diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-05-18 18:09:36 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-05-18 18:09:36 +0000 |
commit | b17e76d34adbc4852dbfe0c49dd4533dc806769c (patch) | |
tree | 0375243eedefbeb8d7031877f98beb4e1af83ba2 | |
parent | ca11dae4a4b1c39c7b86a91c6bf2a07cd79ef219 (diff) |
Commands beginning with '--' are converted to '-f' by gcc. Blech!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72023 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/FrontendC/2009-05-17-AlwaysInline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/FrontendC/2009-05-17-AlwaysInline.c b/test/FrontendC/2009-05-17-AlwaysInline.c index e758cbf6e7..a93fabe052 100644 --- a/test/FrontendC/2009-05-17-AlwaysInline.c +++ b/test/FrontendC/2009-05-17-AlwaysInline.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -O0 -o - -mllvm --disable-llvm-optzns | grep bar +// RUN: %llvmgcc -S %s -O0 -o - -mllvm -disable-llvm-optzns | grep bar // Check that the gcc inliner is turned off. #include <stdio.h> |