diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-25 11:27:37 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-25 11:27:37 +0000 |
commit | 97ea867690314be089744a52931b42a7f6a291a1 (patch) | |
tree | 4c54cfa14e84fced5cc4047028141521d1f5a2e2 /clang/test/CodeGen/visibility.c | |
parent | 3ab3b5e17a6880b582f86e65ccab352de2d5a362 (diff) | |
download | bcm5719-llvm-97ea867690314be089744a52931b42a7f6a291a1.tar.gz bcm5719-llvm-97ea867690314be089744a52931b42a7f6a291a1.zip |
MultiTestRunner: Validate '&&' at the end of RUN lines.
- This is just to normalize, these will go away soon hopefully.
Added all the missing '&&'s that have crept in. :)
llvm-svn: 77062
Diffstat (limited to 'clang/test/CodeGen/visibility.c')
-rw-r--r-- | clang/test/CodeGen/visibility.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/visibility.c b/clang/test/CodeGen/visibility.c index bb9b6e0d50c..958eb618ee7 100644 --- a/clang/test/CodeGen/visibility.c +++ b/clang/test/CodeGen/visibility.c @@ -15,7 +15,7 @@ // RUN: grep 'define internal void @f_deferred()' %t && // RUN: grep 'define protected i32 @f_def()' %t && // RUN: clang-cc -triple i386-unknown-unknown -fvisibility=hidden -emit-llvm -o %t %s && -// RUN: grep '@g_com = common hidden global i32 0' %t &&a +// RUN: grep '@g_com = common hidden global i32 0' %t && // RUN: grep '@g_def = hidden global i32 0' %t && // RUN: grep '@g_ext = external global i32' %t && // RUN: grep '@g_deferred = internal global' %t && |