From ccf15bca330f9a23337b1a4b5850f7fcc6c1bf15 Mon Sep 17 00:00:00 2001 From: Vladimir Marko Date: Tue, 23 Aug 2016 17:48:38 +0000 Subject: 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 --- test/537-checker-arraycopy/src/Main.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/537-checker-arraycopy/src/Main.java') 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]; -- cgit v1.2.3-59-g8ed1b