diff options
author | David Greene <greened@obbligato.org> | 2009-06-08 22:34:57 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-06-08 22:34:57 +0000 |
commit | 0574ff5639f3e62cbc89e53439de21d9a1700c5c (patch) | |
tree | cf9cc34fa9b900a7f8628216d41c81ffacad4ccf | |
parent | bf02c8869a2d71825d9a099dad8e8134a4c0fb3b (diff) | |
download | bcm5719-llvm-0574ff5639f3e62cbc89e53439de21d9a1700c5c.tar.gz bcm5719-llvm-0574ff5639f3e62cbc89e53439de21d9a1700c5c.zip |
Add a more robust !if test.
llvm-svn: 73091
-rw-r--r-- | llvm/test/TableGen/if.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/TableGen/if.td b/llvm/test/TableGen/if.td index 3c45d95eb20..9b2438245db 100644 --- a/llvm/test/TableGen/if.td +++ b/llvm/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]; |