* gcc.dg/tree-ssa/20050128-1.c: New test.
From-SVN: r94377
This commit is contained in:
parent
139c978a44
commit
bd16270bd8
|
@ -1,3 +1,7 @@
|
|||
2004-06-24 Jeff Law <law@redhat.com>
|
||||
|
||||
* gcc.dg/tree-ssa/20050128-1.c: New test.
|
||||
|
||||
2005-01-28 Richard Sandiford <rsandifo@redhat.com>
|
||||
|
||||
* gcc.target/frv/all-mdpackh-1.c: New test.
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
/* { dg-do compile } */
|
||||
/* { dg-options "-O2 -fdump-tree-generic" } */
|
||||
|
||||
int
|
||||
foo (int align)
|
||||
{
|
||||
int off = 0 % align;
|
||||
return off ? align - off : 0;
|
||||
}
|
||||
|
||||
/* We should have optimized away the mod operator before we genericized
|
||||
the code. */
|
||||
/* { dg-final { scan-tree-dump-times "%" 0 "generic"} } */
|
Loading…
Reference in New Issue