summaryrefslogtreecommitdiff
path: root/test/Tooling
diff options
context:
space:
mode:
authorJohannes Altmanninger <aclopte@gmail.com>2017-08-20 20:13:33 +0000
committerJohannes Altmanninger <aclopte@gmail.com>2017-08-20 20:13:33 +0000
commit8982819d15f4ba52ab853569c849121db58776fb (patch)
tree116e621fecea65887157fac91450a2b1e3cd0f80 /test/Tooling
parentfbdebfae845511dae1ff852aa303205a1dee5ebf (diff)
downloadclang-8982819d15f4ba52ab853569c849121db58776fb.tar.gz
Allow thiscall attribute in test/Tooling/clang-diff-ast.cpp
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@311301 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Tooling')
-rw-r--r--test/Tooling/clang-diff-ast.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Tooling/clang-diff-ast.cpp b/test/Tooling/clang-diff-ast.cpp
index 9381489f8f..dd355abd54 100644
--- a/test/Tooling/clang-diff-ast.cpp
+++ b/test/Tooling/clang-diff-ast.cpp
@@ -61,7 +61,7 @@ public:
// CHECK: MemberExpr: X::m(
int x = m;
}
- // CHECK: CXXConstructorDecl: X::X(void (char))X,(
+ // CHECK: CXXConstructorDecl: X::X(void (char){{( __attribute__\(\(thiscall\)\))?}})X,(
X(char s) : X(s, 4) {}
};