We shouldn't have tests for features we don't have yet.
[oota-llvm.git] / test / CFrontend / 2002-02-18-64bitConstant.c
index 3c3a6034864e24c916a7e147a3bc2e522f3fa01a..6fd3e29d24299cc32ab9744bc8c028911a802fa1 100644 (file)
@@ -1,7 +1,8 @@
+// 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);
-
+  long long Var = 123455678902ll;
+  printf("%lld\n", Var);
 }