[cfe-commits] r167161 - /cfe/trunk/lib/Driver/Compilation.cpp
    Chad Rosier 
    mcrosier at apple.com
       
    Wed Oct 31 12:28:55 PDT 2012
    
    
  
Author: mcrosier
Date: Wed Oct 31 14:28:55 2012
New Revision: 167161
URL: http://llvm.org/viewvc/llvm-project?rev=167161&view=rev
Log:
[driver] Remove an extra space with the -internal-externc-isystem option, so
that matching works correctly.
Part of rdar://12329974
Modified:
    cfe/trunk/lib/Driver/Compilation.cpp
Modified: cfe/trunk/lib/Driver/Compilation.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/Compilation.cpp?rev=167161&r1=167160&r2=167161&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/Compilation.cpp (original)
+++ cfe/trunk/lib/Driver/Compilation.cpp Wed Oct 31 14:28:55 2012
@@ -115,7 +115,7 @@
     .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)
    
    
More information about the cfe-commits
mailing list