Commit b9a97851 by Ian Lance Taylor Committed by Ian Lance Taylor

* g++.dg/other/vrp1.C: New test.

From-SVN: r125007
parent 126e073b
2007-05-23 Ian Lance Taylor <iant@google.com>
* g++.dg/other/vrp1.C: New test.
2007-05-23 Simon Martin <simartin@users.sourceforge.net>
PR preprocessor/20077
// { dg-do compile }
// { dg-options "-O2" }
// This caused a crash in VRP because TREE_OVERFLOW was set for MIN.
template<long long MIN>
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);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment