diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-10-08 04:40:08 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-10-08 04:40:08 +0000 |
commit | 39482dde6680b5e0bf02426aab3eecc620d9b18a (patch) | |
tree | 3f57ab9846f4909904608352c8f23155fea468f2 /test/LLVMC | |
parent | 1f30dcbd8dcf18cabb4be780fcf492869d5dcab9 (diff) |
Input files should go before all other options.
Important, for example, when calling 'gcc a.o b.o c.o -lD -lE -lF'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83524 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/LLVMC')
-rw-r--r-- | test/LLVMC/ExternOptions.td | 2 | ||||
-rw-r--r-- | test/LLVMC/ForwardAs.td | 2 | ||||
-rw-r--r-- | test/LLVMC/MultiValuedOption.td | 2 | ||||
-rw-r--r-- | test/LLVMC/NoActions.td | 2 | ||||
-rw-r--r-- | test/LLVMC/OneOrMore.td | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/test/LLVMC/ExternOptions.td b/test/LLVMC/ExternOptions.td index 7d71e91551..5c69af7d80 100644 --- a/test/LLVMC/ExternOptions.td +++ b/test/LLVMC/ExternOptions.td @@ -10,7 +10,7 @@ def OptList : OptionList<[(switch_option "Wall", (extern)), (prefix_list_option "L", (extern))]>; def dummy_tool : Tool<[ -(cmd_line "dummy_cmd"), +(cmd_line "dummy_cmd $INFILE"), (in_language "dummy"), (out_language "dummy"), (actions (case diff --git a/test/LLVMC/ForwardAs.td b/test/LLVMC/ForwardAs.td index 28c2a0aae7..51bd494610 100644 --- a/test/LLVMC/ForwardAs.td +++ b/test/LLVMC/ForwardAs.td @@ -8,7 +8,7 @@ include "llvm/CompilerDriver/Common.td" def OptList : OptionList<[(parameter_option "dummy", (extern))]>; def dummy_tool : Tool<[ -(cmd_line "dummy_cmd"), +(cmd_line "dummy_cmd $INFILE"), (in_language "dummy"), (out_language "dummy"), (actions (case diff --git a/test/LLVMC/MultiValuedOption.td b/test/LLVMC/MultiValuedOption.td index 0272e082be..bd1e0338f7 100644 --- a/test/LLVMC/MultiValuedOption.td +++ b/test/LLVMC/MultiValuedOption.td @@ -10,7 +10,7 @@ def OptList : OptionList<[ (parameter_list_option "baz", (multi_val 2), (extern))]>; def dummy_tool : Tool<[ -(cmd_line "dummy_cmd"), +(cmd_line "dummy_cmd $INFILE"), (in_language "dummy"), (out_language "dummy"), (actions (case diff --git a/test/LLVMC/NoActions.td b/test/LLVMC/NoActions.td index 298b6e23b5..2a4a7495ab 100644 --- a/test/LLVMC/NoActions.td +++ b/test/LLVMC/NoActions.td @@ -4,7 +4,7 @@ include "llvm/CompilerDriver/Common.td" def dummy_tool : Tool<[ -(cmd_line "dummy_cmd"), +(cmd_line "dummy_cmd $INFILE"), (in_language "dummy"), (out_language "dummy") ]>; diff --git a/test/LLVMC/OneOrMore.td b/test/LLVMC/OneOrMore.td index d6bc38b9b5..38b7eb7dff 100644 --- a/test/LLVMC/OneOrMore.td +++ b/test/LLVMC/OneOrMore.td @@ -11,7 +11,7 @@ def OptList : OptionList<[ (parameter_list_option "baz", (zero_or_one))]>; def dummy_tool : Tool<[ -(cmd_line "dummy_cmd"), +(cmd_line "dummy_cmd $INFILE"), (in_language "dummy"), (out_language "dummy"), (actions (case |