summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-16 06:06:42 +0000
committerChris Lattner <sabre@nondot.org>2007-04-16 06:06:42 +0000
commitb01b15a5e89045e162ddcf1df42311a0cd5e2b66 (patch)
tree6e3980606fa398bfbd1ae855083c8433570960fa /test
parentbd19d27bbaa616b0db240224e5a7b3dd7f4688cf (diff)
downloadllvm-b01b15a5e89045e162ddcf1df42311a0cd5e2b66.tar.gz
llvm-b01b15a5e89045e162ddcf1df42311a0cd5e2b66.tar.bz2
llvm-b01b15a5e89045e162ddcf1df42311a0cd5e2b66.tar.xz
remove a bogus test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36116 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CFrontend/2002-11-07-Redefinition.c61
1 files changed, 0 insertions, 61 deletions
diff --git a/test/CFrontend/2002-11-07-Redefinition.c b/test/CFrontend/2002-11-07-Redefinition.c
deleted file mode 100644
index 7f00e58516..0000000000
--- a/test/CFrontend/2002-11-07-Redefinition.c
+++ /dev/null
@@ -1,61 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
-// XFAIL: *
-
-/* Provide Declarations */
-
-#ifndef NULL
-#define NULL 0
-#endif
-
-#ifndef __cplusplus
-typedef unsigned char bool;
-#endif
-
-
-/* Support for floating point constants */
-typedef unsigned long long ConstantDoubleTy;
-typedef unsigned int ConstantFloatTy;
-
-
-/* Global Declarations */
-
-/* External Global Variable Declarations */
-
-/* Function Declarations */
-void __main();
-int printf(signed char *, ...);
-void testfunc(short l5_s, float l11_X, signed char l3_C, signed long long l9_LL, int l7_I, double l12_D);
-void main();
-
-/* Malloc to make sun happy */
-extern void * malloc(size_t);
-
-
-
-/* Global Variable Declerations */
-extern signed char l27_d_LC0[26];
-
-
-/* Global Variable Definitions and Initialization */
-static signed char l27_d_LC0[26] = "%d, %f, %d, %lld, %d, %f\n";
-
-
-/* Function Bodies */
-void testfunc(short l5_s, float l11_X, signed char l3_C, signed long long l9_LL, int l7_I, double l12_D) {
- int l7_reg226;
-
-
- l7_reg226 = printf((&(l27_d_LC0[0ll])), ((unsigned )l5_s), ((double )l11_X), ((unsigned )l3_C), l9_LL, l7_I, l12_D);
- return;
-}
-
-void main() {
-
- const ConstantFloatTy FloatConstant0 = 0x3f9f5c29; /* 1.245 */
- const ConstantDoubleTy FloatConstant1 = 0x432ff973cafa8000; /* 4.5e+15 */
-
- __main();
- testfunc(12, (*(float*)&FloatConstant0), 120, 123456677890ll, -10, (*(double*)&FloatConstant1));
- return;
-}
-