Commit f9f658c8 by Steve Ellcey Committed by Steve Ellcey

re PR middle-end/37339 (gcc.dg/pr33645-3.c scan-assembler-not var1_t)

	PR middle-end/37339
	* gcc.dg/pr33545-3.c: Remove.

From-SVN: r141440
parent 7310a2da
2008-10-29 Steve Ellcey <sje@cup.hp.com>
PR middle-end/37339
* gcc.dg/pr33545-3.c: Remove.
2008-10-29 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
PR 11492
......
/* PR tree-optimization/33645 */
/* { dg-do compile } */
/* { dg-options "-O2 -fno-unit-at-a-time" } */
__attribute__((noinline)) int
bar (int *x)
{
return *x++;
}
int
main ()
{
static int var1_s;
static int *const var1_t = &var1_s;
return bar (var1_t) != 0;
}
/* { dg-final { scan-assembler-not "var1_t" } } */
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