summaryrefslogtreecommitdiffstats
path: root/clang/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-12-23 18:03:34 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-12-23 18:03:34 +0000
commit55e74a1a6af31305ebafe7c14805b54fd5fa7822 (patch)
tree15fab1471150b9f96976eb5082dcfe6a35277b07 /clang/lib/Frontend/CompilerInvocation.cpp
parent6d5479e103153967e6799efaa931dfb7e69e5679 (diff)
downloadbcm5719-llvm-55e74a1a6af31305ebafe7c14805b54fd5fa7822.tar.gz
bcm5719-llvm-55e74a1a6af31305ebafe7c14805b54fd5fa7822.zip
Remove RewriteBlocks. It has been superseded by RewriteObjC
llvm-svn: 92014
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r--clang/lib/Frontend/CompilerInvocation.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp
index 07505bbebc2..63f66fa5448 100644
--- a/clang/lib/Frontend/CompilerInvocation.cpp
+++ b/clang/lib/Frontend/CompilerInvocation.cpp
@@ -280,7 +280,6 @@ static const char *getActionName(frontend::ActionKind Kind) {
case frontend::ParseSyntaxOnly: return "-fsyntax-only";
case frontend::PrintDeclContext: return "-print-decl-contexts";
case frontend::PrintPreprocessedInput: return "-E";
- case frontend::RewriteBlocks: return "-rewrite-blocks";
case frontend::RewriteMacros: return "-rewrite-macros";
case frontend::RewriteObjC: return "-rewrite-objc";
case frontend::RewriteTest: return "-rewrite-test";
@@ -858,8 +857,6 @@ ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args, Diagnostic &Diags) {
Opts.ProgramAction = frontend::PrintDeclContext; break;
case OPT_E:
Opts.ProgramAction = frontend::PrintPreprocessedInput; break;
- case OPT_rewrite_blocks:
- Opts.ProgramAction = frontend::RewriteBlocks; break;
case OPT_rewrite_macros:
Opts.ProgramAction = frontend::RewriteMacros; break;
case OPT_rewrite_objc:
OpenPOWER on IntegriCloud