Commit 69e9762e by James E Wilson Committed by Jim Wilson

Testcase for PR 169.

	* gcc.c-torture/execute/20040223-1.c: New.

From-SVN: r78356
parent dbd6ec2b
2004-02-23 James E Wilson <wilson@specifixinc.com>
* gcc.c-torture/execute/20040223-1.c: New.
2004-02-23 Zack Weinberg <zack@codesourcery.com>
Kazu Hirata <kazu@cs.umass.edu>
......
#include <string.h>
#include <stdio.h>
void
a(void *x,int y)
{
if (y != 1234)
abort ();
}
int
main()
{
a(strcpy(alloca(100),"abc"),1234);
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