mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8025613: clang: remove -Wno-unused-value
Reviewed-by: iveresov
This commit is contained in:
parent
30874d35f1
commit
9376d94e6c
8 changed files with 13 additions and 10 deletions
|
@ -4769,7 +4769,7 @@ void Assembler::adcq(Register dst, Address src) {
|
|||
}
|
||||
|
||||
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, Address src) {
|
|||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue