New testcase
authorChris Lattner <sabre@nondot.org>
Mon, 18 Feb 2002 19:46:09 +0000 (19:46 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 18 Feb 2002 19:46:09 +0000 (19:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1775 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2002-02-18-64bitConstant.c [new file with mode: 0644]

diff --git a/test/CFrontend/2002-02-18-64bitConstant.c b/test/CFrontend/2002-02-18-64bitConstant.c
new file mode 100644 (file)
index 0000000..3c3a603
--- /dev/null
@@ -0,0 +1,7 @@
+/* GCC wasn't handling 64 bit constants right fixed */
+
+void main() {
+       long long Var = 123455678902ll;
+       printf("%lld\n", Var);
+
+}