summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-08-19 21:51:41 +0000
committerEric Christopher <echristo@apple.com>2011-08-19 21:51:41 +0000
commitd1e36dedb5c0a79cdaa91e608509674180a951dd (patch)
treebf815c7fb65a3652e4826ec8aed5ed11a109056a
parentbd11cae6fa2f05b0499c010f810885433a6fd2f6 (diff)
downloadexternal_llvm-d1e36dedb5c0a79cdaa91e608509674180a951dd.zip
external_llvm-d1e36dedb5c0a79cdaa91e608509674180a951dd.tar.gz
external_llvm-d1e36dedb5c0a79cdaa91e608509674180a951dd.tar.bz2
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
-rw-r--r--test/FrontendC++/2009-05-04-PureConstNounwind.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/FrontendC++/2009-05-04-PureConstNounwind.cpp b/test/FrontendC++/2009-05-04-PureConstNounwind.cpp
deleted file mode 100644
index e275c34..0000000
--- 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();
-}