Author: dgregor
Date: Tue Sep 25 11:13:41 2012
New Revision: 164607

URL: http://llvm.org/viewvc/llvm-project?rev=164607&view=rev
Log:
-iframework should allow separate arguments.

Modified:
    cfe/trunk/include/clang/Driver/Options.td
    cfe/trunk/test/Frontend/iframework.c

Modified: cfe/trunk/include/clang/Driver/Options.td
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/Options.td?rev=164607&r1=164606&r2=164607&view=diff
==============================================================================
--- cfe/trunk/include/clang/Driver/Options.td (original)
+++ cfe/trunk/include/clang/Driver/Options.td Tue Sep 25 11:13:41 2012
@@ -725,7 +725,7 @@
   HelpText<"Make the next included directory (-I or -F) an indexer header 
map">;
 def idirafter : JoinedOrSeparate<"-idirafter">, Group<clang_i_Group>, 
Flags<[CC1Option]>,
   HelpText<"Add directory to AFTER include search path">;
-def iframework : Joined<"-iframework">, Group<clang_i_Group>, 
Flags<[CC1Option]>,
+def iframework : JoinedOrSeparate<"-iframework">, Group<clang_i_Group>, 
Flags<[CC1Option]>,
   HelpText<"Add directory to SYSTEM framework search path">;
 def imacros : JoinedOrSeparate<"-imacros">, Group<clang_i_Group>, 
Flags<[CC1Option]>,
   HelpText<"Include macros from file before parsing">, MetaVarName<"<file>">;

Modified: cfe/trunk/test/Frontend/iframework.c
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Frontend/iframework.c?rev=164607&r1=164606&r2=164607&view=diff
==============================================================================
--- cfe/trunk/test/Frontend/iframework.c (original)
+++ cfe/trunk/test/Frontend/iframework.c Tue Sep 25 11:13:41 2012
@@ -1,3 +1,3 @@
-// RUN: %clang -fsyntax-only -iframework%S/Inputs %s -Xclang -verify
+// RUN: %clang -fsyntax-only -iframework %S/Inputs %s -Xclang -verify
 
 #include <TestFramework/TestFramework.h>


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to