aboutsummaryrefslogtreecommitdiff
path: root/test/Tooling/clang-ast-dump.cpp
diff options
context:
space:
mode:
authorAlexander Kornienko <alexfh@google.com>2012-07-26 01:44:18 +0000
committerAlexander Kornienko <alexfh@google.com>2012-07-26 01:44:18 +0000
commit77b1ae5656cc6ca41bf02831b37fae2d9b27c2a4 (patch)
tree361f7e53f0bf8988b883ca27d338bf36bd41d079 /test/Tooling/clang-ast-dump.cpp
parent9dc5167e4017ef4c8b327abb6f72225eec2e0f19 (diff)
Removed standalone clang-ast-dump tool.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160772 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Tooling/clang-ast-dump.cpp')
-rw-r--r--test/Tooling/clang-ast-dump.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/Tooling/clang-ast-dump.cpp b/test/Tooling/clang-ast-dump.cpp
deleted file mode 100644
index 3847bc6fad..0000000000
--- a/test/Tooling/clang-ast-dump.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// RUN: clang-ast-dump "%s" -f test_namespace::TheClass::theMethod -- -c 2>&1 | FileCheck %s
-
-// FIXME: Does this run regardless of +Asserts?
-// REQUIRES: asserts
-
-// CHECK: <CXXMethod ptr="0x{{[0-9a-f]+}}" name="theMethod" prototype="true">
-// CHECK: <ParmVar ptr="0x{{[0-9a-f]+}}" name="x" initstyle="c">
-// CHECK: (CompoundStmt
-// CHECK-NEXT: (ReturnStmt
-// CHECK-NEXT: (BinaryOperator
-
-namespace test_namespace {
-
-class TheClass {
-public:
- int theMethod(int x) {
- return x + x;
- }
-};
-
-}