diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-04-13 16:03:00 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-04-13 16:03:00 +0000 |
commit | adfb842fc19b4f51f4cdce15bf556ef7a88373c0 (patch) | |
tree | ffa057a4609e8a39b1fc30012d188866bc9192d8 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | eba02fecdd3063960091de39853b07225d03381d (diff) | |
download | llvm-adfb842fc19b4f51f4cdce15bf556ef7a88373c0.zip llvm-adfb842fc19b4f51f4cdce15bf556ef7a88373c0.tar.gz llvm-adfb842fc19b4f51f4cdce15bf556ef7a88373c0.tar.bz2 |
Remove the -cc1-level option "-pubnames-dump". Such things should stay
out of the tree and use the tooling infrastructure.
llvm-svn: 154668
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 02947c7..4c5b063 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -429,7 +429,6 @@ static const char *getActionName(frontend::ActionKind Kind) { case frontend::PrintDeclContext: return "-print-decl-contexts"; case frontend::PrintPreamble: return "-print-preamble"; case frontend::PrintPreprocessedInput: return "-E"; - case frontend::PubnamesDump: return "-pubnames-dump"; case frontend::RewriteMacros: return "-rewrite-macros"; case frontend::RewriteObjC: return "-rewrite-objc"; case frontend::RewriteTest: return "-rewrite-test"; @@ -1369,8 +1368,6 @@ static InputKind ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args, Opts.ProgramAction = frontend::PrintPreamble; break; case OPT_E: Opts.ProgramAction = frontend::PrintPreprocessedInput; break; - case OPT_pubnames_dump: - Opts.ProgramAction = frontend::PubnamesDump; break; case OPT_rewrite_macros: Opts.ProgramAction = frontend::RewriteMacros; break; case OPT_rewrite_objc: |