aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC++/2009-05-04-PureConstNounwind.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC++/2009-05-04-PureConstNounwind.cpp')
-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 e275c340a950..000000000000
--- 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();
-}