Commit 15edc0cb by Matthew Hiller Committed by Jeff Law

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

From-SVN: r36924
parent 19ca869b
2000-10-17 Matthew Hiller <hiller@redhat.com>
* gcc.c-torture/execute/20001017-2.c: New test.
2000-10-18 Joseph S. Myers <jsm28@cam.ac.uk>
* gcc.c-torture/compile/20001018-1.c: New test.
......
void
fn_4parms (unsigned char a, long *b, long *c, unsigned int *d)
{
if (*b != 1 || *c != 2 || *d != 3)
abort ();
}
int
main ()
{
unsigned char a = 0;
unsigned long b = 1, c = 2;
unsigned int d = 3;
fn_4parms (a, &b, &c, &d);
return 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