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
This commit is contained in:
Steve Ellcey 2008-10-29 19:41:26 +00:00 committed by Steve Ellcey
parent 7310a2da1c
commit f9f658c800
2 changed files with 5 additions and 20 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -1,20 +0,0 @@
/* 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" } } */