summaryrefslogtreecommitdiff
path: root/test/537-checker-arraycopy/src/Main.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/537-checker-arraycopy/src/Main.java')
-rw-r--r--test/537-checker-arraycopy/src/Main.java4
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];