summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorManuel Klimek <klimek@google.com>2012-04-26 08:46:12 +0000
committerManuel Klimek <klimek@google.com>2012-04-26 08:46:12 +0000
commit981d1ec3fd2d33fbb1b47c9fdae9e5a0ea241bc4 (patch)
tree965bd400849f61a5d8e4bf11367380bf6a74375f /examples
parent4f148d947c2d864d834070cb9109ef04e726afd9 (diff)
downloadclang-981d1ec3fd2d33fbb1b47c9fdae9e5a0ea241bc4.tar.gz
clang-981d1ec3fd2d33fbb1b47c9fdae9e5a0ea241bc4.tar.bz2
clang-981d1ec3fd2d33fbb1b47c9fdae9e5a0ea241bc4.tar.xz
Reverted unintentional commit.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/PrintFunctionNames/PrintFunctionNames.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/PrintFunctionNames/PrintFunctionNames.cpp b/examples/PrintFunctionNames/PrintFunctionNames.cpp
index b024b968db..ce8f208e41 100644
--- a/examples/PrintFunctionNames/PrintFunctionNames.cpp
+++ b/examples/PrintFunctionNames/PrintFunctionNames.cpp
@@ -17,7 +17,6 @@
#include "clang/AST/AST.h"
#include "clang/Frontend/CompilerInstance.h"
#include "llvm/Support/raw_ostream.h"
-#include "clang/Frontend/FrontendActions.h"
using namespace clang;
namespace {
@@ -68,5 +67,5 @@ protected:
}
-static FrontendPluginRegistry::Add<SyntaxOnlyAction>
+static FrontendPluginRegistry::Add<PrintFunctionNamesAction>
X("print-fns", "print function names");