From: Ian Lance Taylor Date: Wed, 23 May 2007 23:00:54 +0000 (+0000) Subject: * g++.dg/other/vrp1.C: New test. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b9a97851b5cbf9d615dbced763ff1cd81cb5482a;p=platform%2Fupstream%2Fgcc.git * g++.dg/other/vrp1.C: New test. From-SVN: r125007 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 03f6112..8abebbe 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2007-05-23 Ian Lance Taylor + + * g++.dg/other/vrp1.C: New test. + 2007-05-23 Simon Martin PR preprocessor/20077 diff --git a/gcc/testsuite/g++.dg/other/vrp1.C b/gcc/testsuite/g++.dg/other/vrp1.C new file mode 100644 index 0000000..0a798c9 --- /dev/null +++ b/gcc/testsuite/g++.dg/other/vrp1.C @@ -0,0 +1,12 @@ +// { dg-do compile } +// { dg-options "-O2" } +// This caused a crash in VRP because TREE_OVERFLOW was set for MIN. + +template +long long mod (long long l, long long r) +{ + if (l == MIN && r == -1) + return 0LL; + return l % r; +} +template long long mod<-0x8000000000000000LL> (long long, long long);