diff options
Diffstat (limited to 'clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp')
-rw-r--r-- | clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp index 7ba7103..acda316 100644 --- a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp +++ b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp @@ -162,10 +162,7 @@ static FrontendAction *CreateFrontendAction(CompilerInstance &CI) { if (FEOpts.ObjCMTAction != FrontendOptions::ObjCMT_None) { Act = new arcmt::ObjCMigrateAction(Act, FEOpts.MTMigrateDir, - FEOpts.ObjCMTAction & FrontendOptions::ObjCMT_Literals, - FEOpts.ObjCMTAction & FrontendOptions::ObjCMT_Subscripting, - FEOpts.ObjCMTAction & FrontendOptions::ObjCMT_Property, - FEOpts.ObjCMTAction & FrontendOptions::ObjCMT_ReadonlyProperty); + FEOpts.ObjCMTAction); } #endif |