aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Tools.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-05-28 16:43:21 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-05-28 16:43:21 +0000
commit469d40ef5a95d0eaddfd541616ad4cd26668e856 (patch)
treed45f7df9fcd63ca36e704ba08c4d1dedb88a5584 /lib/Driver/Tools.cpp
parent811d0bec4d4eb6a8ff373f97f98354d6e0e54ecb (diff)
Driver: Spell -relax-all correctly when calling the cc1as tool.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@104955 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Tools.cpp')
-rw-r--r--lib/Driver/Tools.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp
index 918f0d9715..0d6cb30205 100644
--- a/lib/Driver/Tools.cpp
+++ b/lib/Driver/Tools.cpp
@@ -1529,7 +1529,7 @@ void ClangAs::ConstructJob(Compilation &C, const JobAction &JA,
if (Args.hasFlag(options::OPT_mrelax_all,
options::OPT_mno_relax_all,
!IsOpt))
- CmdArgs.push_back("-mrelax-all");
+ CmdArgs.push_back("-relax-all");
// FIXME: Add -force_cpusubtype_ALL support, once we have it.