diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-13 19:44:40 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-13 19:44:40 +0000 |
commit | 4c50d46e0c79a5a464e3d130a22fc80493745e77 (patch) | |
tree | 3de37992607270b6e60ea98d03ad6280549a738a /clang/test/CodeGen/bool-init.c | |
parent | c694751a06f2b61586b24798f84f7d88452dd3b5 (diff) | |
download | bcm5719-llvm-4c50d46e0c79a5a464e3d130a22fc80493745e77.tar.gz bcm5719-llvm-4c50d46e0c79a5a464e3d130a22fc80493745e77.zip |
Convert test to FileCheck
llvm-svn: 197267
Diffstat (limited to 'clang/test/CodeGen/bool-init.c')
-rw-r--r-- | clang/test/CodeGen/bool-init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/CodeGen/bool-init.c b/clang/test/CodeGen/bool-init.c index 1a8f127b868..09b4a87e63d 100644 --- a/clang/test/CodeGen/bool-init.c +++ b/clang/test/CodeGen/bool-init.c @@ -1,4 +1,5 @@ -// RUN: %clang_cc1 -emit-llvm < %s | grep i1 | count 1 +// RUN: %clang_cc1 -triple x86_64-pc-linux -emit-llvm < %s | FileCheck %s // Check that the type of this global isn't i1 +// CHECK: @test = global i8 1 _Bool test = &test; |