aboutsummaryrefslogtreecommitdiffstats
path: root/test/TableGen/if.td
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-06-08 22:34:57 +0000
committerDavid Greene <greened@obbligato.org>2009-06-08 22:34:57 +0000
commit5f323419f309c368a6eb63370f0cff35fb10f205 (patch)
tree35ec52e356b51ff85c02e498a9bc89bae1b22a54 /test/TableGen/if.td
parentd7251892547b71c27ab6fb87355ca9b984d92908 (diff)
downloadexternal_llvm-5f323419f309c368a6eb63370f0cff35fb10f205.zip
external_llvm-5f323419f309c368a6eb63370f0cff35fb10f205.tar.gz
external_llvm-5f323419f309c368a6eb63370f0cff35fb10f205.tar.bz2
Add a more robust !if test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73091 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen/if.td')
-rw-r--r--test/TableGen/if.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TableGen/if.td b/test/TableGen/if.td
index 3c45d95..9b24382 100644
--- a/test/TableGen/if.td
+++ b/test/TableGen/if.td
@@ -1,5 +1,5 @@
-// RUN: tblgen %s | grep {1, 2, 3} | count 4
-// RUN: tblgen %s | grep {4, 5, 6} | count 2
+// RUN: tblgen %s | grep {\\\[1, 2, 3\\\]} | count 4
+// RUN: tblgen %s | grep {\\\[4, 5, 6\\\]} | count 2
class A<list<list<int>> vals> {
list<int> first = vals[0];