re PR c/22589 (ICE casting to long long)

PR c/22589
	* gcc.c-torture/compile/pr22589.c: New test.

From-SVN: r102467
This commit is contained in:
Richard Sandiford 2005-07-28 08:00:57 +00:00 committed by Richard Sandiford
parent 09bac500fc
commit 378ba99de6
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-07-28 Richard Sandiford <richard@codesourcery.com>
PR c/22589
* gcc.c-torture/compile/pr22589.c: New test.
2005-07-28 Jan Hubicka <jh@suse.cz>
* update-loopch.c: New testcase.

View File

@ -0,0 +1,4 @@
int bar (char *foo)
{
return (long long) ((int) foo + 0) < 0;
}