summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/105/device/1630527
blob: b58e034f895b6b83a8cc478a9052f42979ee1acf (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
24
25
26
27
28
29
30
31
device: 0.911
instruction: 0.871
socket: 0.624
graphic: 0.600
vnc: 0.484
network: 0.468
semantic: 0.433
boot: 0.371
assembly: 0.352
mistranslation: 0.224
other: 0.214
KVM: 0.112

qemu/hw/i386/amd_iommu.c:188: possible bad shift ?

qemu/hw/i386/amd_iommu.c:188]: (error) Shifting 32-bit value by 64 bits is undefined behaviour

Source code is

    uint64_t mask = ((1 << length) - 1) << bitpos;

Maybe better code

    uint64_t mask = ((1ULL << length) - 1) << bitpos;

Thanks for reporting this bug! Looks like this has already been fixed by this commit here:
http://git.qemu.org/?p=qemu.git;a=commitdiff;h=1d5b128cbeeab638f772e


Released with v2.8