[PATCH] D120543: [NFC][AArch64][SME] Remove '#' prefix in PSEL test cases
Hsiangkai Wang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 25 01:24:30 PST 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG2cd675249d8d: [NFC][AArch64][SME] Remove '#' prefix in PSEL test cases (authored by HsiangKai).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120543/new/
https://reviews.llvm.org/D120543
Files:
llvm/test/MC/AArch64/SME/psel-diagnostics.s
Index: llvm/test/MC/AArch64/SME/psel-diagnostics.s
===================================================================
--- llvm/test/MC/AArch64/SME/psel-diagnostics.s
+++ llvm/test/MC/AArch64/SME/psel-diagnostics.s
@@ -25,22 +25,22 @@
// --------------------------------------------------------------------------//
// Invalid immediates
-psel p0, p0, p0.b[w12, #16]
+psel p0, p0, p0.b[w12, 16]
// CHECK: [[@LINE-1]]:{{[0-9]+}}: error: immediate must be an integer in range [0, 15].
-// CHECK-NEXT: psel p0, p0, p0.b[w12, #16]
+// CHECK-NEXT: psel p0, p0, p0.b[w12, 16]
// CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
-psel p0, p0, p0.h[w12, #8]
+psel p0, p0, p0.h[w12, 8]
// CHECK: [[@LINE-1]]:{{[0-9]+}}: error: immediate must be an integer in range [0, 7].
-// CHECK-NEXT: psel p0, p0, p0.h[w12, #8]
+// CHECK-NEXT: psel p0, p0, p0.h[w12, 8]
// CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
-psel p0, p0, p0.s[w12, #4]
+psel p0, p0, p0.s[w12, 4]
// CHECK: [[@LINE-1]]:{{[0-9]+}}: error: immediate must be an integer in range [0, 3].
-// CHECK-NEXT: psel p0, p0, p0.s[w12, #4]
+// CHECK-NEXT: psel p0, p0, p0.s[w12, 4]
// CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
-psel p0, p0, p0.d[w12, #2]
+psel p0, p0, p0.d[w12, 2]
// CHECK: [[@LINE-1]]:{{[0-9]+}}: error: immediate must be an integer in range [0, 1].
-// CHECK-NEXT: psel p0, p0, p0.d[w12, #2]
+// CHECK-NEXT: psel p0, p0, p0.d[w12, 2]
// CHECK-NOT: [[@LINE-1]]:{{[0-9]+}}:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D120543.411346.patch
Type: text/x-patch
Size: 1422 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220225/dac6eced/attachment.bin>
More information about the llvm-commits
mailing list