src/cpu/x86/vm/assembler_x86.cpp

changeset 5797
f2512d89ad0c
parent 5353
b800986664f4
child 5997
59e8ad757e19
     1.1 --- a/src/cpu/x86/vm/assembler_x86.cpp	Sat Sep 28 12:32:10 2013 +0400
     1.2 +++ b/src/cpu/x86/vm/assembler_x86.cpp	Sat Sep 28 12:42:22 2013 -0700
     1.3 @@ -4769,7 +4769,7 @@
     1.4  }
     1.5  
     1.6  void Assembler::adcq(Register dst, Register src) {
     1.7 -  (int) prefixq_and_encode(dst->encoding(), src->encoding());
     1.8 +  (void) prefixq_and_encode(dst->encoding(), src->encoding());
     1.9    emit_arith(0x13, 0xC0, dst, src);
    1.10  }
    1.11  
    1.12 @@ -4824,7 +4824,7 @@
    1.13  }
    1.14  
    1.15  void Assembler::andq(Register dst, Register src) {
    1.16 -  (int) prefixq_and_encode(dst->encoding(), src->encoding());
    1.17 +  (void) prefixq_and_encode(dst->encoding(), src->encoding());
    1.18    emit_arith(0x23, 0xC0, dst, src);
    1.19  }
    1.20  

mercurial