Commit 91f4790c by Jakub Jelinek Committed by Jakub Jelinek

* gcc.c-torture/execute/20000715-2.c: New test.

From-SVN: r35050
parent eff9c80d
2000-07-15 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/20000715-2.c: New test.
2000-07-15 Michael Meissner <meissner@redhat.com>
* gcc.c-torture/execute/20000715-1.c: New test.
......
extern void abort(void);
extern void exit(int);
unsigned int foo(unsigned int a)
{
return ((unsigned char)(a + 1)) * 4;
}
int main(void)
{
if (foo((unsigned char)~0))
abort ();
exit(0);
}
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