1. 09 2月, 2013 3 次提交
  2. 08 2月, 2013 2 次提交
  3. 07 2月, 2013 20 次提交
  4. 06 2月, 2013 13 次提交
  5. 05 2月, 2013 2 次提交
    • S
      target-s390x: Fix wrong comparison in interrupt handling · b22dd124
      Stefan Weil 提交于
      gcc with -Wextra complains about an ordered pointer comparison:
      
      target-s390x/helper.c:660:27: warning:
       ordered comparison of pointer with integer zero [-Wextra]
      
      Obviously the index was missing in the code.
      Signed-off-by: NStefan Weil <sw@weilnetz.de>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      b22dd124
    • A
      s390x: silence warning from GCC on uninitialized values · 0123c486
      Anthony Liguori 提交于
      As best I can tell, this is a false positive.
      
        [aliguori@ccnode4 qemu-s390]$ make
          CC    s390x-softmmu/target-s390x/helper.o
        /home/aliguori/git/qemu/target-s390x/helper.c: In function ‘do_interrupt’:
        /home/aliguori/git/qemu/target-s390x/helper.c:673:17: error: ‘addr’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
        /home/aliguori/git/qemu/target-s390x/helper.c:620:20: note: ‘addr’ was declared here
        /home/aliguori/git/qemu/target-s390x/helper.c:673:17: error: ‘mask’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
        /home/aliguori/git/qemu/target-s390x/helper.c:620:14: note: ‘mask’ was declared here
        cc1: all warnings being treated as errors
        make[1]: *** [target-s390x/helper.o] Error 1
        make: *** [subdir-s390x-softmmu] Error 2
      
      Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
      Cc: Stefan Weil <sw@weilnetz.de>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      0123c486