diff options
Diffstat (limited to 'results/classifier/108/other/1631773')
| -rw-r--r-- | results/classifier/108/other/1631773 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/results/classifier/108/other/1631773 b/results/classifier/108/other/1631773 new file mode 100644 index 000000000..8b2051600 --- /dev/null +++ b/results/classifier/108/other/1631773 @@ -0,0 +1,32 @@ +device: 0.831 +socket: 0.662 +network: 0.539 +vnc: 0.472 +files: 0.455 +semantic: 0.412 +graphic: 0.406 +debug: 0.288 +PID: 0.261 +other: 0.242 +boot: 0.222 +KVM: 0.213 +performance: 0.163 +permissions: 0.150 + +hw/dma/pl080.c:354: possible typo ? + +hw/dma/pl080.c:354:1: warning: V578 An odd bitwise operation detected: s->conf & (0x2 | 0x2). Consider verifying it. + +Source code is + + if (s->conf & (PL080_CONF_M1 | PL080_CONF_M1)) { + +Maybe better code + + if (s->conf & (PL080_CONF_M1 | PL080_CONF_M2)) { + +Thanks for reporting the issue, patch has now been included here: +http://git.qemu.org/?p=qemu.git;a=commitdiff;h=04bb79d1f519ae190a + +Released with version 2.8. + |