diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-02-17 19:04:40 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-02-17 19:04:40 +0000 |
commit | d6f8124c9c7ee85d30b09d2ae873cf4ab4c19baa (patch) | |
tree | daa7114340d0a564f6f78facdfcf6a2eb3dc633a /clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp | |
parent | e6be5e1c0dd68d8a25145ba9d179eca8943a7e10 (diff) | |
download | bcm5719-llvm-d6f8124c9c7ee85d30b09d2ae873cf4ab4c19baa.tar.gz bcm5719-llvm-d6f8124c9c7ee85d30b09d2ae873cf4ab4c19baa.zip |
Eliminate the internal command-line option for viewing inheritance in C++ classes, since it's only really worked for the trivial cases anyway due to lame pseudo-parsing of the class name. The viewInheritance() function is still available for use in the debugger, where this is far more useful
llvm-svn: 125762
Diffstat (limited to 'clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp')
-rw-r--r-- | clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp index dc8b15d9c5e..4bb85e7e634 100644 --- a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp +++ b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp @@ -53,7 +53,6 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { case FixIt: return new FixItAction(); case GeneratePCH: return new GeneratePCHAction(); case GeneratePTH: return new GeneratePTHAction(); - case InheritanceView: return new InheritanceViewAction(); case InitOnly: return new InitOnlyAction(); case ParseSyntaxOnly: return new SyntaxOnlyAction(); |