From 0931797d68b42c0390bb57f5e5ac265ddbda4b81 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 28 Apr 2011 01:09:13 +0000 Subject: [PATCH] Removed test that depended on ast-test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130367 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/AST/__try.c | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 test/AST/__try.c diff --git a/test/AST/__try.c b/test/AST/__try.c deleted file mode 100644 index 6170adba70..0000000000 --- a/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}} - } -} -- 2.50.1