Commit 3c5ce3af by Yuri Gribov Committed by Paolo Bonzini

980526-2.c: Skip if sizeof (int) > 4.

2009-09-23  Yuri Gribov  <tetra2005@googlemail.com>

	* gcc.c-torture/execute/980526-2.c: Skip if sizeof (int) > 4.

From-SVN: r152063
parent 31a9bec4
2009-09-23 Yuri Gribov <tetra2005@googlemail.com>
* gcc.c-torture/execute/980526-2.c: Skip if sizeof (int) > 4.
2009-09-23 Uros Bizjak <ubizjak@gmail.com>
PR c/39779
......
......@@ -50,7 +50,7 @@ int sys_mknod(const char * filename, int mode, dev_t dev)
int main(void)
{
if (sizeof (int) < 4)
if (sizeof (int) != 4)
exit (0);
return sys_mknod("test",1,0x12345678);
......
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