Skip to content
Snippets Groups Projects
Commit 4cbf3711 authored by danglin's avatar danglin
Browse files

* gcc.c-torture/execute/20010604-1.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42883 138bc75d-0d04-0410-961f-82ee72b054a4
parent a12f4e51
No related merge requests found
2001-06-04 John David Anglin <dave@hiauly1.hia.nrc.ca>
* gcc.c-torture/execute/20010604-1.c: New test.
2001-06-04 Loren J. Rittle <ljrittle@acm.org>
* gcc.c-torture/execute/ieee/rbug.x: XFAIL FreeBSD 5.x.
......
#include <stdbool.h>
int f (int a, int b, int c, _Bool d, _Bool e, _Bool f, char g)
{
if (g != 1 || d != true || e != true || f != true) abort ();
return a + b + c;
}
int main (void)
{
if (f (1, 2, -3, true, true, true, '\001'))
abort ();
exit (0);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment