Commit 017901f4 by Zdenek Dvorak Committed by Zdenek Dvorak

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

From-SVN: r86415
parent c9081a92
2004-08-23 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* gcc.c-torture/execute/20040823-1.c: New test.
2004-08-23 Richard Sandiford <rsandifo@redhat.com>
* gcc.dg/special/mips-abi.exp: Expect gcc to pass the GNU ABI flags
......
/* Ensure that we create VUSE operands also for noreturn functions. */
#include <stdlib.h>
#include <string.h>
int *pwarn;
void bla (void) __attribute__ ((noreturn));
void bla (void)
{
if (!*pwarn)
abort ();
exit (0);
}
int main (void)
{
int warn;
memset (&warn, 0, sizeof (warn));
pwarn = &warn;
warn = 1;
bla ();
}
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