summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-02-18 19:46:09 +0000
committerChris Lattner <sabre@nondot.org>2002-02-18 19:46:09 +0000
commitae505609206dae590ae04fe2c7b491e3a015245f (patch)
treeec0d513409d94cd2b651a875779b304e41cd309c /test
parent34dd24b0b83885a3992c02ce91fe02c244e83e97 (diff)
downloadllvm-ae505609206dae590ae04fe2c7b491e3a015245f.tar.gz
llvm-ae505609206dae590ae04fe2c7b491e3a015245f.tar.bz2
llvm-ae505609206dae590ae04fe2c7b491e3a015245f.tar.xz
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1775 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CFrontend/2002-02-18-64bitConstant.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CFrontend/2002-02-18-64bitConstant.c b/test/CFrontend/2002-02-18-64bitConstant.c
new file mode 100644
index 0000000000..3c3a603486
--- /dev/null
+++ b/test/CFrontend/2002-02-18-64bitConstant.c
@@ -0,0 +1,7 @@
+/* GCC wasn't handling 64 bit constants right fixed */
+
+void main() {
+ long long Var = 123455678902ll;
+ printf("%lld\n", Var);
+
+}