diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-24 23:34:51 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-24 23:34:51 +0000 |
commit | dfbd119c8bfd90565ee26110d636f135e761b443 (patch) | |
tree | 181d942bb883c2b5b0642a9c85fc4be97b2632a7 | |
parent | d30df9e24c89aad7cfb21508213e15d79bb7a6e3 (diff) | |
download | bcm5719-llvm-dfbd119c8bfd90565ee26110d636f135e761b443.tar.gz bcm5719-llvm-dfbd119c8bfd90565ee26110d636f135e761b443.zip |
FileCheck'ize test
llvm-svn: 173391
-rw-r--r-- | clang/test/CodeGen/parameter-passing.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/clang/test/CodeGen/parameter-passing.c b/clang/test/CodeGen/parameter-passing.c index e48815b9661..40610af9d7d 100644 --- a/clang/test/CodeGen/parameter-passing.c +++ b/clang/test/CodeGen/parameter-passing.c @@ -5,14 +5,10 @@ // We also check _Bool and empty structures, as these can have annoying // corner cases. -// RUN: %clang_cc1 %s -triple i386-unknown-unknown -O3 -emit-llvm -o %t -// RUN: not grep '@g0' %t - -// RUN: %clang_cc1 %s -triple x86_64-unknown-unknown -O3 -emit-llvm -o %t -// RUN: not grep '@g0' %t - -// RUN: %clang_cc1 %s -triple powerpc-unknown-unknown -O3 -emit-llvm -o %t -// RUN: not grep '@g0' %t +// RUN: %clang_cc1 %s -triple i386-unknown-unknown -O3 -emit-llvm -o - | FileCheck %s +// RUN: %clang_cc1 %s -triple x86_64-unknown-unknown -O3 -emit-llvm -o - | FileCheck %s +// RUN: %clang_cc1 %s -triple powerpc-unknown-unknown -O3 -emit-llvm -o - | FileCheck %s +// CHECK-NOT: @g0 typedef _Bool BoolTy; typedef int ScalarTy; |