Commit fd89bc3f by Eric Botcazou Committed by Eric Botcazou

20060905-1.c: New test.

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

From-SVN: r116692
parent 6b887797
2006-09-05 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.c-torture/execute/20060905-1.c: New test.
2006-09-05 Paul Thomas <pault@gcc.gnu.org>
PR fortran/28908
/* PR rtl-optimization/28386 */
/* Origin: Volker Reichelt <reichelt@gcc.gnu.org> */
extern void abort(void);
volatile char s[256][3];
char g;
static void dummy(char a)
{
g = a;
}
static int foo(void)
{
int i, j=0;
for (i = 0; i < 256; i++)
if (i >= 128 && i < 256)
{
dummy (s[i - 128][0]);
++j;
}
return j;
}
int main(void)
{
if (foo () != 128)
abort ();
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