diff src/cpu/x86/vm/assembler_x86.cpp @ 12329:f2512d89ad0c

8025613: clang: remove -Wno-unused-value Reviewed-by: iveresov
author twisti
date Sat, 28 Sep 2013 12:42:22 -0700
parents b800986664f4
children cefad50507d8 59e8ad757e19
line wrap: on
line diff
--- a/src/cpu/x86/vm/assembler_x86.cpp	Sat Sep 28 12:32:10 2013 +0400
+++ b/src/cpu/x86/vm/assembler_x86.cpp	Sat Sep 28 12:42:22 2013 -0700
@@ -4769,7 +4769,7 @@
 }
 
 void Assembler::adcq(Register dst, Register src) {
-  (int) prefixq_and_encode(dst->encoding(), src->encoding());
+  (void) prefixq_and_encode(dst->encoding(), src->encoding());
   emit_arith(0x13, 0xC0, dst, src);
 }
 
@@ -4824,7 +4824,7 @@
 }
 
 void Assembler::andq(Register dst, Register src) {
-  (int) prefixq_and_encode(dst->encoding(), src->encoding());
+  (void) prefixq_and_encode(dst->encoding(), src->encoding());
   emit_arith(0x23, 0xC0, dst, src);
 }