Commit 8aad1777 by Richard Henderson Committed by Richard Henderson

* gcc.c-torture/execute/20011219-1.c (main): Make "i" a long.

From-SVN: r48296
parent c5b3a39e
2001-12-23 Richard Henderson <rth@redhat.com>
* gcc.c-torture/execute/20011219-1.c (main): Make "i" a long.
2001-12-23 Joseph S. Myers <jsm28@cam.ac.uk> 2001-12-23 Joseph S. Myers <jsm28@cam.ac.uk>
* gcc.c-torture/execute/20011223-1.c: New test. * gcc.c-torture/execute/20011223-1.c: New test.
......
...@@ -42,7 +42,7 @@ foo (enum X x, const void *y) ...@@ -42,7 +42,7 @@ foo (enum X x, const void *y)
int int
main () main ()
{ {
int i = 24; long i = 24;
if (foo (N, &i) != 24) if (foo (N, &i) != 24)
abort (); abort ();
exit (0); 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