Skip to content

Commit bf01efa

Browse files
author
Vladimir Kempik
committed
8248414: AArch64: Remove uses of long and unsigned long ints
Reviewed-by: phh Backport-of: c7d8485
1 parent dfb67bc commit bf01efa

22 files changed

+558
-246
lines changed

src/hotspot/cpu/aarch64/aarch64-asmtest.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import random
22

3-
AARCH64_AS = "<PATH-TO-AS>"
4-
AARCH64_OBJDUMP = "<PATH-TO-OBJDUMP>"
5-
AARCH64_OBJCOPY = "<PATH-TO-OBJCOPY>"
3+
AARCH64_AS = "as"
4+
AARCH64_OBJDUMP = "objdump"
5+
AARCH64_OBJCOPY = "objcopy"
66

77
class Operand(object):
88

@@ -348,7 +348,7 @@ def astr(self):
348348
+ ', #0x%x' % self.immed)
349349

350350
def cstr(self):
351-
return super(AddSubImmOp, self).cstr() + "l);"
351+
return super(AddSubImmOp, self).cstr() + "ll);"
352352

353353
class MultiOp():
354354

0 commit comments

Comments
 (0)