diff options
author | Eric Christopher <echristo@apple.com> | 2010-12-02 02:13:27 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-12-02 02:13:27 +0000 |
commit | 7c92342a319c5eb02b8a9cfcc9a4e73392a8b5ae (patch) | |
tree | f4dea8e19f0acb2fc08ade9155c468124b0dd900 /test | |
parent | a878cda355074d7d50211be49e7871840a55a5d9 (diff) |
FileCheckize.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120647 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/no-common.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/no-common.c b/test/CodeGen/no-common.c index 03a5bb064c..a8f2b2b277 100644 --- a/test/CodeGen/no-common.c +++ b/test/CodeGen/no-common.c @@ -1,6 +1,6 @@ -// RUN: %clang -emit-llvm -S -o %t %s -// RUN: grep '@x = common global' %t -// RUN: %clang -fno-common -emit-llvm -S -o %t %s -// RUN: grep '@x = global' %t +// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s -check-prefix=CHECK-DEFAULT +// RUN: %clang_cc1 %s -fno-common -emit-llvm -o - | FileCheck %s -check-prefix=CHECK-NOCOMMON +// CHECK-DEFAULT: @x = common global +// CHECK-NOCOMMON: @x = global int x; |