diff options
-rw-r--r-- | include/clang/Driver/Options.td | 2 | ||||
-rw-r--r-- | test/Frontend/iframework.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td index 8a7d1135cf..a220beaca8 100644 --- a/include/clang/Driver/Options.td +++ b/include/clang/Driver/Options.td @@ -725,7 +725,7 @@ def index_header_map : Flag<"-index-header-map">, Flags<[CC1Option]>, 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>">; diff --git a/test/Frontend/iframework.c b/test/Frontend/iframework.c index 0c241fd489..7180416e99 100644 --- a/test/Frontend/iframework.c +++ b/test/Frontend/iframework.c @@ -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> |