diff options
author | 2016-08-23 17:48:38 +0000 | |
---|---|---|
committer | 2016-08-23 17:48:38 +0000 | |
commit | ccf15bca330f9a23337b1a4b5850f7fcc6c1bf15 (patch) | |
tree | 8e271269eb0f3e40388311478fe441bfeb47ab47 /test/537-checker-arraycopy/src/Main.java | |
parent | ccf06d8f19a37432de4a3b768747090adfbd18ec (diff) |
Revert "x86/x86-64: Avoid temporary for read barrier field load."
Fault handler does not recognize the instruction
F6 /0 ib TEST r/m8, imm8
so we get crashes instead of NPEs.
Bug: 29966877
Bug: 12687968
This reverts commit ccf06d8f19a37432de4a3b768747090adfbd18ec.
Change-Id: Ib7db3b59f44c0d3ed5e24a20b6c6ee596a89d709
Diffstat (limited to 'test/537-checker-arraycopy/src/Main.java')
-rw-r--r-- | test/537-checker-arraycopy/src/Main.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/537-checker-arraycopy/src/Main.java b/test/537-checker-arraycopy/src/Main.java index 95a11ca010..7c124caa8e 100644 --- a/test/537-checker-arraycopy/src/Main.java +++ b/test/537-checker-arraycopy/src/Main.java @@ -51,10 +51,10 @@ public class Main { /// CHECK-START-X86_64: void Main.arraycopy() disassembly (after) /// CHECK: InvokeStaticOrDirect intrinsic:SystemArrayCopy - /// CHECK-NOT: test {{^[^\[].*}}, {{^[^\[].*}} + /// CHECK-NOT: test /// CHECK-NOT: call /// CHECK: ReturnVoid - // Checks that the call is intrinsified and that there is no register test instruction + // Checks that the call is intrinsified and that there is no test instruction // when we know the source and destination are not null. public static void arraycopy() { Object[] obj = new Object[4]; |