[cfe-commits] r167173 - /cfe/trunk/lib/Driver/Compilation.cpp

Chad Rosier mcrosier at apple.com
Wed Oct 31 14:08:30 PDT 2012


Author: mcrosier
Date: Wed Oct 31 16:08:30 2012
New Revision: 167173

URL: http://llvm.org/viewvc/llvm-project?rev=167173&view=rev
Log:
[driver] Remove an extra space with the -iprefix 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=167173&r1=167172&r2=167173&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/Compilation.cpp (original)
+++ cfe/trunk/lib/Driver/Compilation.cpp Wed Oct 31 16:08:30 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