Skip to content

Commit dff37f8

Browse files
committedJul 21, 2020
8248671: AArch64: Remove unused variables
Remove unused variables in the AArch64 backend. Detected by compiling with MSVC, which warns about them. Reviewed-by: aph, dholmes
1 parent 9ff01f7 commit dff37f8

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed
 

‎src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -2284,7 +2284,6 @@ void LIR_Assembler::emit_arraycopy(LIR_OpArrayCopy* op) {
22842284
assert(default_type != NULL && default_type->is_array_klass() && default_type->is_loaded(), "must be true at this point");
22852285

22862286
int elem_size = type2aelembytes(basic_type);
2287-
int shift_amount;
22882287
int scale = exact_log2(elem_size);
22892288

22902289
Address src_length_addr = Address(src, arrayOopDesc::length_offset_in_bytes());

‎src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,6 @@ class StubGenerator: public StubCodeGenerator {
697697
int unit = wordSize * direction;
698698
int bias = (UseSIMDForMemoryOps ? 4:2) * wordSize;
699699

700-
int offset;
701700
const Register t0 = r3, t1 = r4, t2 = r5, t3 = r6,
702701
t4 = r7, t5 = r10, t6 = r11, t7 = r12;
703702
const Register stride = r13;

0 commit comments

Comments
 (0)
Please sign in to comment.