nrv3.c: Increase size of structure.

* gcc.dg/nrv3.c: Increase size of structure.
* gcc.dg/nrv4.c: Likewise.
* gcc.dg/nrv5.c: Likewise.

From-SVN: r116854
This commit is contained in:
Josh Conner 2006-09-11 18:54:29 +00:00 committed by Josh Conner
parent 5a4ba983b8
commit c2b448c655
4 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2006-09-11 Josh Conner <jconner@apple.com>
* gcc.dg/nrv3.c: Increase size of structure.
* gcc.dg/nrv4.c: Likewise.
* gcc.dg/nrv5.c: Likewise.
2006-09-11 Paul Thomas <pault@gcc.gnu.org>
PR libfortran/28890

View File

@ -3,7 +3,7 @@
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized" } */
typedef struct { int x; void *y; } S;
typedef struct { int x[20]; void *y; } S;
typedef struct { int a; S b; } T;
S nrv_candidate (void);
void use_result (S, int);

View File

@ -3,7 +3,7 @@
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized" } */
typedef struct { int x; void *y; } S;
typedef struct { int x[20]; void *y; } S;
S nrv_candidate (void);
void use_result (S);
void make_escape (S *);

View File

@ -3,7 +3,7 @@
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized" } */
typedef struct { int x; void *y; } S;
typedef struct { int x[20]; void *y; } S;
typedef struct { int a; S b; } T;
S nrv_candidate (void);
void use_result (S);