diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-10-31 19:28:55 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-10-31 19:28:55 +0000 |
commit | 967f3f09f800b6529d74637a73384ee540c8e901 (patch) | |
tree | 2f7bfc9f5e6186767cc5bd0cd154a5210f6c2783 /lib/Driver/Compilation.cpp | |
parent | 710c517431954cfffba519fc7814cfbd8412a9aa (diff) |
[driver] Remove an extra space with the -internal-externc-isystem option, so
that matching works correctly.
Part of rdar://12329974
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167161 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Compilation.cpp')
-rw-r--r-- | lib/Driver/Compilation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/Compilation.cpp b/lib/Driver/Compilation.cpp index e804a54383..c15e7a3b02 100644 --- a/lib/Driver/Compilation.cpp +++ b/lib/Driver/Compilation.cpp @@ -115,7 +115,7 @@ static bool skipArg(const char *Flag, bool &SkipNextArg) { .Cases("-o", "-coverage-file", "-dependency-file", true) .Cases("-fdebug-compilation-dir", "-fmodule-cache-path", "-idirafter", true) .Cases("-include", "-include-pch", "-internal-isystem", true) - .Cases("-internal-externc-isystem ", "-iprefix ", "-iwithprefix", true) + .Cases("-internal-externc-isystem", "-iprefix ", "-iwithprefix", true) .Cases("-iwithprefixbefore", "-isysroot", "-isystem", "-iquote", true) .Cases("-resource-dir", "-serialize-diagnostic-file", true) .Case("-dwarf-debug-flags", true) |