diff options
author | Chris Lattner <sabre@nondot.org> | 2011-04-09 07:09:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-04-09 07:09:31 +0000 |
commit | 919f2ca3c21f6b590eea50645ff5bedb54d81673 (patch) | |
tree | 908936e57587f7aa5dd1105239403ad976113e09 /lib/Frontend/CompilerInvocation.cpp | |
parent | 23aa9c8ca0bc441aab2a38a4c9fc7a1c9e9ac16a (diff) |
accept -x objc-cpp-output as an alias for -x objective-c-cpp-output,
per PR9577
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129201 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index df876d80c7..3d6d9d9afc 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/lib/Frontend/CompilerInvocation.cpp @@ -1189,6 +1189,7 @@ static InputKind ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args, .Case("assembler-with-cpp", IK_Asm) .Case("c++-cpp-output", IK_PreprocessedCXX) .Case("objective-c-cpp-output", IK_PreprocessedObjC) + .Case("objc-cpp-output", IK_PreprocessedObjC) .Case("objective-c++-cpp-output", IK_PreprocessedObjCXX) .Case("c-header", IK_C) .Case("objective-c-header", IK_ObjC) |