[llvm] f22445b - [mips][test] Remove redundant and invalid `CHECK-NOT` directives. NFC
Simon Atanasyan via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 3 06:30:14 PDT 2020
Author: Simon Atanasyan
Date: 2020-04-03T16:29:39+03:00
New Revision: f22445bf57606ffc9914777c228936d4b3f8140d
URL: https://github.com/llvm/llvm-project/commit/f22445bf57606ffc9914777c228936d4b3f8140d
DIFF: https://github.com/llvm/llvm-project/commit/f22445bf57606ffc9914777c228936d4b3f8140d.diff
LOG: [mips][test] Remove redundant and invalid `CHECK-NOT` directives. NFC
1. It's redundant to explicitly check that string does not contain `PAUSE_MM`
token if check that the `PAUSE` token is followed by an angle bracket.
2. The removed `CHECK-NOT` directives do not have trailing colons.
Added:
Modified:
llvm/test/MC/Mips/mips32r2/valid.s
llvm/test/MC/Mips/mips32r3/valid.s
llvm/test/MC/Mips/mips32r5/valid.s
llvm/test/MC/Mips/mips32r6/valid.s
llvm/test/MC/Mips/mips64r2/valid.s
llvm/test/MC/Mips/mips64r3/valid.s
llvm/test/MC/Mips/mips64r5/valid.s
llvm/test/MC/Mips/mips64r6/valid.s
Removed:
################################################################################
diff --git a/llvm/test/MC/Mips/mips32r2/valid.s b/llvm/test/MC/Mips/mips32r2/valid.s
index 5b3b8ca1efd9..d292ecc064c1 100644
--- a/llvm/test/MC/Mips/mips32r2/valid.s
+++ b/llvm/test/MC/Mips/mips32r2/valid.s
@@ -209,8 +209,7 @@ a:
or $12,$s0,$sp
or $2, 4 # CHECK: ori $2, $2, 4 # encoding: [0x34,0x42,0x00,0x04]
pause # CHECK: pause # encoding: [0x00,0x00,0x01,0x40]
- # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE
- # CHECK-NOT # <MCInst #{{[0-9}+}} PAUSE_MM
+ # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE>
pref 1, 8($5) # CHECK: pref 1, 8($5) # encoding: [0xcc,0xa1,0x00,0x08]
# FIXME: Use the code generator in order to print the .set directives
# instead of the instruction printer.
diff --git a/llvm/test/MC/Mips/mips32r3/valid.s b/llvm/test/MC/Mips/mips32r3/valid.s
index 103073b02ddf..137aee681174 100644
--- a/llvm/test/MC/Mips/mips32r3/valid.s
+++ b/llvm/test/MC/Mips/mips32r3/valid.s
@@ -209,8 +209,7 @@ a:
or $12,$s0,$sp
or $2, 4 # CHECK: ori $2, $2, 4 # encoding: [0x34,0x42,0x00,0x04]
pause # CHECK: pause # encoding: [0x00,0x00,0x01,0x40]
- # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE
- # CHECK-NOT # <MCInst #{{[0-9}+}} PAUSE_MM
+ # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE>
pref 1, 8($5) # CHECK: pref 1, 8($5) # encoding: [0xcc,0xa1,0x00,0x08]
# FIXME: Use the code generator in order to print the .set directives
# instead of the instruction printer.
diff --git a/llvm/test/MC/Mips/mips32r5/valid.s b/llvm/test/MC/Mips/mips32r5/valid.s
index 935adfb04277..bf75a2c000bf 100644
--- a/llvm/test/MC/Mips/mips32r5/valid.s
+++ b/llvm/test/MC/Mips/mips32r5/valid.s
@@ -210,8 +210,7 @@ a:
or $12,$s0,$sp
or $2, 4 # CHECK: ori $2, $2, 4 # encoding: [0x34,0x42,0x00,0x04]
pause # CHECK: pause # encoding: [0x00,0x00,0x01,0x40]
- # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE
- # CHECK-NOT # <MCInst #{{[0-9}+}} PAUSE_MM
+ # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE>
pref 1, 8($5) # CHECK: pref 1, 8($5) # encoding: [0xcc,0xa1,0x00,0x08]
# FIXME: Use the code generator in order to print the .set directives
# instead of the instruction printer.
diff --git a/llvm/test/MC/Mips/mips32r6/valid.s b/llvm/test/MC/Mips/mips32r6/valid.s
index 87a8467639e3..0f098a176a67 100644
--- a/llvm/test/MC/Mips/mips32r6/valid.s
+++ b/llvm/test/MC/Mips/mips32r6/valid.s
@@ -149,8 +149,7 @@ a:
not $3, $4 # CHECK: not $3, $4 # encoding: [0x00,0x80,0x18,0x27]
not $3 # CHECK: not $3, $3 # encoding: [0x00,0x60,0x18,0x27]
pause # CHECK: pause # encoding: [0x00,0x00,0x01,0x40]
- # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE
- # CHECK-NOT # <MCInst #{{[0-9}+}} PAUSE_MM
+ # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE>
pref 1, 8($5) # CHECK: pref 1, 8($5) # encoding: [0x7c,0xa1,0x04,0x35]
# CHECK-NEXT: # <MCInst #{{.*}} PREF_R6
# FIXME: Use the code generator in order to print the .set directives
diff --git a/llvm/test/MC/Mips/mips64r2/valid.s b/llvm/test/MC/Mips/mips64r2/valid.s
index c7696ba455e4..e1ce6aca281b 100644
--- a/llvm/test/MC/Mips/mips64r2/valid.s
+++ b/llvm/test/MC/Mips/mips64r2/valid.s
@@ -287,8 +287,7 @@ a:
or $12,$s0,$sp
or $2, 4 # CHECK: ori $2, $2, 4 # encoding: [0x34,0x42,0x00,0x04]
pause # CHECK: pause # encoding: [0x00,0x00,0x01,0x40]
- # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE
- # CHECK-NOT # <MCInst #{{[0-9}+}} PAUSE_MM
+ # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE>
pll.ps $f26,$f10,$f30 # CHECK: pll.ps $f26, $f10, $f30 # encoding: [0x46,0xde,0x56,0xac]
# CHECK: # <MCInst #{{[0-9]+}} PLL_PS64
plu.ps $f2,$f26,$f30 # CHECK: plu.ps $f2, $f26, $f30 # encoding: [0x46,0xde,0xd0,0xad]
diff --git a/llvm/test/MC/Mips/mips64r3/valid.s b/llvm/test/MC/Mips/mips64r3/valid.s
index 76c6f13bc21a..fc4c58d7f84a 100644
--- a/llvm/test/MC/Mips/mips64r3/valid.s
+++ b/llvm/test/MC/Mips/mips64r3/valid.s
@@ -281,8 +281,7 @@ a:
or $12,$s0,$sp
or $2, 4 # CHECK: ori $2, $2, 4 # encoding: [0x34,0x42,0x00,0x04]
pause # CHECK: pause # encoding: [0x00,0x00,0x01,0x40]
- # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE
- # CHECK-NOT # <MCInst #{{[0-9}+}} PAUSE_MM
+ # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE>
pll.ps $f26,$f10,$f30 # CHECK: pll.ps $f26, $f10, $f30 # encoding: [0x46,0xde,0x56,0xac]
# CHECK: # <MCInst #{{[0-9]+}} PLL_PS64
plu.ps $f2,$f26,$f30 # CHECK: plu.ps $f2, $f26, $f30 # encoding: [0x46,0xde,0xd0,0xad]
diff --git a/llvm/test/MC/Mips/mips64r5/valid.s b/llvm/test/MC/Mips/mips64r5/valid.s
index 540a832146f4..41515b13703d 100644
--- a/llvm/test/MC/Mips/mips64r5/valid.s
+++ b/llvm/test/MC/Mips/mips64r5/valid.s
@@ -283,8 +283,7 @@ a:
or $12,$s0,$sp
or $2, 4 # CHECK: ori $2, $2, 4 # encoding: [0x34,0x42,0x00,0x04]
pause # CHECK: pause # encoding: [0x00,0x00,0x01,0x40]
- # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE
- # CHECK-NOT # <MCInst #{{[0-9}+}} PAUSE_MM
+ # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE>
pll.ps $f26,$f10,$f30 # CHECK: pll.ps $f26, $f10, $f30 # encoding: [0x46,0xde,0x56,0xac]
# CHECK: # <MCInst #{{[0-9]+}} PLL_PS64
plu.ps $f2,$f26,$f30 # CHECK: plu.ps $f2, $f26, $f30 # encoding: [0x46,0xde,0xd0,0xad]
diff --git a/llvm/test/MC/Mips/mips64r6/valid.s b/llvm/test/MC/Mips/mips64r6/valid.s
index c810a40e2528..c50bd9e31c23 100644
--- a/llvm/test/MC/Mips/mips64r6/valid.s
+++ b/llvm/test/MC/Mips/mips64r6/valid.s
@@ -213,8 +213,7 @@ a:
not $3 # CHECK: not $3, $3 # encoding: [0x00,0x60,0x18,0x27]
or $2, 4 # CHECK: ori $2, $2, 4 # encoding: [0x34,0x42,0x00,0x04]
pause # CHECK: pause # encoding: [0x00,0x00,0x01,0x40]
- # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE
- # CHECK-NOT # <MCInst #{{[0-9}+}} PAUSE_MM
+ # CHECK-NEXT: # <MCInst #{{[0-9]+}} PAUSE>
pref 1, 8($5) # CHECK: pref 1, 8($5) # encoding: [0x7c,0xa1,0x04,0x35]
# FIXME: Use the code generator in order to print the .set directives
# instead of the instruction printer.
More information about the llvm-commits
mailing list