diff options
author | Eric Christopher <echristo@gmail.com> | 2013-02-19 06:16:53 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-02-19 06:16:53 +0000 |
commit | 98654c938da09e045ff3c18324d26d52d36ee155 (patch) | |
tree | 73ce0a4e37e8705ab6f95ca41612db40d38d1bf7 /lib | |
parent | 6637b0607127f0df5a4f4c8180c02c1e041d4682 (diff) |
More grammar.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175492 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Driver/Tools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index 5b3b65428d..ba61292acc 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -2570,7 +2570,7 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA, options::OPT_fno_sanitize_undefined_trap_on_error, false)) CmdArgs.push_back("-fsanitize-undefined-trap-on-error"); - // Report and error for -faltivec on anything other than PowerPC. + // Report an error for -faltivec on anything other than PowerPC. if (const Arg *A = Args.getLastArg(options::OPT_faltivec)) if (!(getToolChain().getTriple().getArch() == llvm::Triple::ppc || getToolChain().getTriple().getArch() == llvm::Triple::ppc64)) |