mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 10:50:51 +08:00
re PR tree-optimization/36318 (SRA pessimizes struct copies without -Os)
2009-06-05 Alexander Strange <astrange@ithinksw.com> PR tree-optimization/36318 * gcc.dg/tree-ssa/sra-7.c: New test. From-SVN: r148203
This commit is contained in:
parent
90f0624882
commit
2771246a53
@ -1,3 +1,8 @@
|
||||
2009-06-05 Alexander Strange <astrange@ithinksw.com>
|
||||
|
||||
PR tree-optimization/36318
|
||||
* gcc.dg/tree-ssa/sra-7.c: New test.
|
||||
|
||||
2009-06-04 Daniel Franke <franke.daniel@gmail.com>
|
||||
|
||||
PR fortran/37203
|
||||
|
13
gcc/testsuite/gcc.dg/tree-ssa/sra-7.c
Normal file
13
gcc/testsuite/gcc.dg/tree-ssa/sra-7.c
Normal file
@ -0,0 +1,13 @@
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "-O1 -fdump-tree-optimized" } */
|
||||
|
||||
typedef struct { char f[4]; } __attribute__((aligned (4))) s;
|
||||
|
||||
void a(s *s1, s *s2)
|
||||
{
|
||||
*s1 = *s2;
|
||||
}
|
||||
|
||||
/* Struct copies should not be split into members. */
|
||||
/* { dg-final { scan-tree-dump "\\\*s1_.\\\(D\\\) = \\\*s2" "optimized"} } */
|
||||
/* { dg-final { cleanup-tree-dump "optimized" } } */
|
Loading…
x
Reference in New Issue
Block a user