aboutsummaryrefslogtreecommitdiff
path: root/test/CFrontend/2002-02-18-64bitConstant.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CFrontend/2002-02-18-64bitConstant.c')
-rw-r--r--test/CFrontend/2002-02-18-64bitConstant.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/CFrontend/2002-02-18-64bitConstant.c b/test/CFrontend/2002-02-18-64bitConstant.c
deleted file mode 100644
index 6fd3e29d24..0000000000
--- a/test/CFrontend/2002-02-18-64bitConstant.c
+++ /dev/null
@@ -1,8 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
-
-/* GCC wasn't handling 64 bit constants right fixed */
-
-void main() {
- long long Var = 123455678902ll;
- printf("%lld\n", Var);
-}