diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-20 22:21:52 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-20 22:21:52 +0000 |
commit | a31100e62f83933432df9092a04e48f9e5561a14 (patch) | |
tree | b78230c5cf86c275ddf49aa72d5215111ed33a85 /lib/Driver/CC1Options.cpp | |
parent | 66861e09d590994a8b941eaa328e4d8f33adec9e (diff) |
Pass '-mcpu' 'FOO' instead of '-mcpu=FOO'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89498 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/CC1Options.cpp')
-rw-r--r-- | lib/Driver/CC1Options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/CC1Options.cpp b/lib/Driver/CC1Options.cpp index 7655770ccc..7b0d67a1d2 100644 --- a/lib/Driver/CC1Options.cpp +++ b/lib/Driver/CC1Options.cpp @@ -136,7 +136,7 @@ static void ParseTargetArgs(TargetOptions &Opts, ArgList &Args) { void CompilerInvocation::CreateFromArgs(CompilerInvocation &Res, const llvm::SmallVectorImpl<llvm::StringRef> &Args) { - // This is gratuitous, but until we switch the driver to using StringRe we + // This is gratuitous, but until we switch the driver to using StringRef we // need to get C strings. llvm::SmallVector<std::string, 16> StringArgs(Args.begin(), Args.end()); llvm::SmallVector<const char *, 16> CStringArgs; |