# HG changeset patch # User Rob Landley # Date 1191314620 18000 # Node ID 2766e2ad73be994661cf31979157193107daccc4 # Parent 2768f7c241563db4ed5def501d93dd515a7190f2 Test constant propogation in long long initialization. diff -r 2768f7c24156 -r 2766e2ad73be tests/tcctest.c --- a/tests/tcctest.c Tue Oct 02 03:38:20 2007 -0500 +++ b/tests/tcctest.c Tue Oct 02 03:43:40 2007 -0500 @@ -1597,6 +1597,9 @@ void lloptest(long long a, long long b) { unsigned long long ua, ub; + unsigned long long cc=1LL<<48; + + printf("cc=%Ld\n",cc); ua = a; ub = b;