diff options
author | John Wiegley <johnw@boostpro.com> | 2011-04-28 01:09:13 +0000 |
---|---|---|
committer | John Wiegley <johnw@boostpro.com> | 2011-04-28 01:09:13 +0000 |
commit | d25f8eb393995474f10612ec7f9099a9930bb44a (patch) | |
tree | a2e06671062cb7d51bbdf972f985aa27466f5169 | |
parent | 1c0675e155b932c2ec3bf3fd8c424c823632a29c (diff) | |
download | bcm5719-llvm-d25f8eb393995474f10612ec7f9099a9930bb44a.tar.gz bcm5719-llvm-d25f8eb393995474f10612ec7f9099a9930bb44a.zip |
Removed test that depended on ast-test
llvm-svn: 130367
-rw-r--r-- | clang/test/AST/__try.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/clang/test/AST/__try.c b/clang/test/AST/__try.c deleted file mode 100644 index 6170adba70a..00000000000 --- a/clang/test/AST/__try.c +++ /dev/null @@ -1,28 +0,0 @@ -// RUN: %ast_test -fborland-extensions %s - -#define JOIN2(x,y) x ## y -#define JOIN(x,y) JOIN2(x,y) -#define TEST2(name) JOIN(name,__LINE__) -#define TEST TEST2(test) -typedef int DWORD; - -DWORD FilterExpression(); - -void TEST() { - __try // expected-stmt-class-name{{SEHTryStmt}} - { // expected-stmt-class-name{{CompoundStmt}} - } - __except ( FilterExpression() ) // expected-stmt-class-name{{SEHExceptStmt}} expected-stmt-class-name{{CallExpr}} \ - // expected-expr-type{{DWORD}} - { // expected-stmt-class-name{{CompoundStmt}} - } -} - -void TEST() { - __try // expected-stmt-class-name{{SEHTryStmt}} - { // expected-stmt-class-name{{CompoundStmt}} - } - __finally // expected-stmt-class-name{{SEHFinallyStmt}} - { // expected-stmt-class-name{{CompoundStmt}} - } -} |