blob: 0ff7593aad999ab4a0290056731312686fd4c0df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
device: 0.888
network: 0.724
instruction: 0.666
socket: 0.664
graphic: 0.554
other: 0.354
semantic: 0.311
boot: 0.283
vnc: 0.213
mistranslation: 0.079
assembly: 0.066
KVM: 0.015
Compiler warnings using MSVC
The following line of code results in an implicit truncation of an uint16_t value to an uint8_t variable, which triggers a compiler warning in MSVC : https://github.com/qemu/qemu/blob/f8c3db33a5e863291182f8862ddf81618a7c6194/hw/usb/dev-hub.c#L387
(Two lines down, the same thing happens.)
This warning can be silenced by doing an explicit truncation, for example by a casting the value explicitly to uint8_t type, or by anding the value with 0xFF.
Hi; MSVC is not a supported compiler for QEMU. We expect it to be built with either gcc or llvm.
|