From d1e36dedb5c0a79cdaa91e608509674180a951dd Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Fri, 19 Aug 2011 21:51:41 +0000 Subject: [PATCH] Remove this test. The feature and test have already been migrated to clang. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138101 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/FrontendC++/2009-05-04-PureConstNounwind.cpp | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 test/FrontendC++/2009-05-04-PureConstNounwind.cpp diff --git a/test/FrontendC++/2009-05-04-PureConstNounwind.cpp b/test/FrontendC++/2009-05-04-PureConstNounwind.cpp deleted file mode 100644 index e275c340a95..00000000000 --- a/test/FrontendC++/2009-05-04-PureConstNounwind.cpp +++ /dev/null @@ -1,8 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | grep nounwind | count 4 -int c(void) __attribute__((const)); -int p(void) __attribute__((pure)); -int t(void); - -int f(void) { - return c() + p() + t(); -} -- 2.34.1