diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-10 16:04:47 +0000 |
---|---|---|
committer | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-10 16:04:47 +0000 |
commit | a2f743eaff017f4bd94c0a9b37fdcb258dc9b3f6 (patch) | |
tree | d6cafe296a0b53c947db40e32407773cc6089a8c /llvm/test/Feature/packed_struct.ll | |
parent | 34fe86cd9c83c04685b784e7ff29181b4981d6ce (diff) | |
download | bcm5719-llvm-a2f743eaff017f4bd94c0a9b37fdcb258dc9b3f6.tar.gz bcm5719-llvm-a2f743eaff017f4bd94c0a9b37fdcb258dc9b3f6.zip |
Fix some escaping and quoting in RUN lines, mainly involving { and <. In two
cases quoting of <{ didn't work out, so I changed the grep to check for }>
instead.
This fixes 7 testcases that were not properly running before.
llvm-svn: 52182
Diffstat (limited to 'llvm/test/Feature/packed_struct.ll')
-rw-r--r-- | llvm/test/Feature/packed_struct.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Feature/packed_struct.ll b/llvm/test/Feature/packed_struct.ll index 5bf609b7772..4d4ace9534d 100644 --- a/llvm/test/Feature/packed_struct.ll +++ b/llvm/test/Feature/packed_struct.ll @@ -2,7 +2,7 @@ ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll ; RUN: diff %t1.ll %t2.ll ; RUN: not grep cast %t2.ll -; RUN: grep {\<\{} %t2.ll +; RUN: grep {\\}>} %t2.ll ; END. %struct.anon = type <{ i8, i32, i32, i32 }> |