re PR middle-end/24912 (m68k build failure: ICE: in reload_cse_simplify_operands)

PR middle-end/24912
	* gcc.dg/torture/pr24912-1.c: New test.

From-SVN: r107230
This commit is contained in:
Hans-Peter Nilsson 2005-11-19 21:54:26 +00:00 committed by Hans-Peter Nilsson
parent 41b9109a55
commit 152f76ec3d
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-11-19 Hans-Peter Nilsson <hp@axis.com>
PR middle-end/24912
* gcc.dg/torture/pr24912-1.c: New test.
2005-11-19 Janne Blomqvist <jb@gcc.gnu.org>
PR fortran/24862

View File

@ -0,0 +1,10 @@
void foo(void);
void
bar (unsigned char *p)
{
int j;
j = *(p) ;
j += ((signed char) (*p) ) << 8;
if (j)
foo();
}