diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-03 16:16:27 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-03 16:16:27 +0000 |
commit | e5280286573d4fe1220cdd66e147b572a05536a8 (patch) | |
tree | 2f5b21762672a806214298a274af05d2f7644139 /test/CodeGen/always_inline.c | |
parent | 5accbb99efc23693844d6dc67a8fc33158563b05 (diff) |
Driver: Support -mllvm; this just forwards options to clang-cc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72780 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/always_inline.c')
-rw-r--r-- | test/CodeGen/always_inline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/always_inline.c b/test/CodeGen/always_inline.c index d159bd2233..cb32e3b621 100644 --- a/test/CodeGen/always_inline.c +++ b/test/CodeGen/always_inline.c @@ -1,6 +1,6 @@ -// RUN: clang-cc -emit-llvm -o %t %s && +// RUN: clang -emit-llvm -S -o %t %s && // RUN: grep '@f0' %t | count 0 && -// RUN: clang-cc -disable-llvm-optzns -emit-llvm -o %t %s && +// RUN: clang -mllvm -disable-llvm-optzns -emit-llvm -S -o %t %s && // RUN: grep '@f0' %t | count 2 //static int f0() { |