From: Mikhail Glushenkov Date: Mon, 22 Nov 2010 17:10:09 +0000 (+0000) Subject: llvmc: Make -march/-mcpu/-mtune behaviour more consistent with gcc. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=028941379d820c0cb2cf9960e4994e83a30a9fcf;p=oota-llvm.git llvmc: Make -march/-mcpu/-mtune behaviour more consistent with gcc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119975 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvmc/src/Base.td.in b/tools/llvmc/src/Base.td.in index cefaf487e89..c1898a694e6 100644 --- a/tools/llvmc/src/Base.td.in +++ b/tools/llvmc/src/Base.td.in @@ -11,7 +11,6 @@ // //===----------------------------------------------------------------------===// - // Options def OptList : OptionList<[ @@ -46,9 +45,9 @@ def OptList : OptionList<[ (parameter_option "linker", (help "Choose linker (possible values: gcc, g++)")), (parameter_option "mtune", - (help "Target a specific CPU type"), (hidden), (forward_not_split)), + (help "Target a specific CPU type"), (forward_not_split)), (parameter_option "march", - (help "A synonym for -mtune"), (hidden), (forward_not_split)), + (help "Architecture to generate code for"), (forward_not_split)), (parameter_option "mcpu", (help "A deprecated synonym for -mtune"), (hidden), (forward_not_split)), (switch_option "mfix-and-continue", @@ -203,8 +202,8 @@ class llvm_gcc_based ;