diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-12-10 20:16:17 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-12-10 20:16:17 +0000 |
commit | 26df84a187e2757a41ca1478d26c8cd826232753 (patch) | |
tree | 25c7212930255afe9be1d70fe455b291cb5dca17 /test/CodeGen/code-coverage.c | |
parent | 44dfff681fdca5325bc684c46971efad1f3fedfd (diff) |
Fixup test case from r169755. These are driver options, not frontend options.
Also, add the -S option.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169763 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/code-coverage.c')
-rw-r--r-- | test/CodeGen/code-coverage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/code-coverage.c b/test/CodeGen/code-coverage.c index b073ae6d0b..caeee89b9c 100644 --- a/test/CodeGen/code-coverage.c +++ b/test/CodeGen/code-coverage.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -O0 -mno-red-zone -fprofile-arcs -ftest-coverage -emit-llvm %s -o - | FileCheck %s +// RUN: %clang -O0 -S -mno-red-zone -fprofile-arcs -ftest-coverage -emit-llvm %s -o - | FileCheck %s // <rdar://problem/12843084> int test1(int a) { |