This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/19060] [4.0 Regression] fstream.tellp() result not changed after some output
- From: "belyshev at depni dot sinp dot msu dot ru" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 31 Dec 2004 19:38:54 -0000
- Subject: [Bug tree-optimization/19060] [4.0 Regression] fstream.tellp() result not changed after some output
- References: <20041217182932.19060.wanderer@rsu.ru>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From belyshev at depni dot sinp dot msu dot ru 2004-12-31 19:38 -------
// C testcase
void abort (void);
static long long min ()
{
return -9223372036854775807LL - 1;
}
void foo (long long j)
{
if (j > 10 || j < min ())
abort ();
}
int main ()
{
foo (10);
return 0;
}
--
What |Removed |Added
----------------------------------------------------------------------------
GCC target triplet|i386-unknown-freebsd5.3, |
|i386-openbsd3.1 |
Known to fail| |4.0.0
Known to work| |3.3.4 3.4.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19060