Commit c9871839 by Richard Sandiford Committed by Richard Sandiford

re PR c/20187 (wrong code for ((unsigned char)(unsigned long long)((a?a:1)&(a*b)))?0:1))

	PR c/20187
	* gcc.c-torture/execute/pr20187-1.c: New test.

From-SVN: r102490
parent d579f20b
2005-07-28 Richard Sandiford <richard@codesourcery.com>
PR c/20187
* gcc.c-torture/execute/pr20187-1.c: New test.
2005-07-28 Jeff Law <law@redhat.com>
* gcc.dg/tree-ssa/vrp17.c: Update expected output.
......
int a = 0x101;
int b = 0x100;
int
test (void)
{
return (((unsigned char) (unsigned long long) ((a ? a : 1) & (a * b)))
? 0 : 1);
}
int
main (void)
{
return 1 - test ();
}
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