aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC++/2006-09-08-powi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC++/2006-09-08-powi.cpp')
-rw-r--r--test/FrontendC++/2006-09-08-powi.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/FrontendC++/2006-09-08-powi.cpp b/test/FrontendC++/2006-09-08-powi.cpp
deleted file mode 100644
index 75cbfda..0000000
--- a/test/FrontendC++/2006-09-08-powi.cpp
+++ /dev/null
@@ -1,7 +0,0 @@
-// RUN: %llvmgxx -O3 -S -o - %s
-
-#include <cmath>
-
-double foo(double X, int Y) {
- return std::pow(X, Y);
-}