aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/builtins-powi.c
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-17 08:57:06 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-17 08:57:06 +0000
commitb1295dace2e29a2391aad86b877ef3fd5545ddea (patch)
treeb0d204ead6f99c4aa85d9fe6f885479bc4218024 /test/CodeGen/builtins-powi.c
parent48270a36749b7f10677a514a03bbd2cf90697d58 (diff)
Remove some redundant tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89069 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/builtins-powi.c')
-rw-r--r--test/CodeGen/builtins-powi.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/CodeGen/builtins-powi.c b/test/CodeGen/builtins-powi.c
deleted file mode 100644
index 945ec5dd13..0000000000
--- a/test/CodeGen/builtins-powi.c
+++ /dev/null
@@ -1,28 +0,0 @@
-// RUN: clang-cc -emit-llvm -o - %s > %t
-// RUN: not grep "__builtin" %t
-
-#include <stdio.h>
-#include <stdlib.h>
-
-void test(long double a, int b) {
- printf("%Lf**%d: %08x %08x %016Lx\n",
- a, b,
- __builtin_powi(a, b),
- __builtin_powif(a, b),
- __builtin_powil(a, b)
- );
-}
-
-int main() {
- int i;
-
- test(-1,-1LL);
- test(0,0);
- test(1,1);
-
- for (i=0; i<3; i++) {
- test(random(), i);
- }
-
- return 0;
-}