nrv3.c: Increase size of structure.
authorJosh Conner <jconner@apple.com>
Mon, 11 Sep 2006 18:54:29 +0000 (18:54 +0000)
committerJosh Conner <jconner@gcc.gnu.org>
Mon, 11 Sep 2006 18:54:29 +0000 (18:54 +0000)
* gcc.dg/nrv3.c: Increase size of structure.
* gcc.dg/nrv4.c: Likewise.
* gcc.dg/nrv5.c: Likewise.

From-SVN: r116854

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/nrv3.c
gcc/testsuite/gcc.dg/nrv4.c
gcc/testsuite/gcc.dg/nrv5.c

index d0f76e0..bfffc32 100644 (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
index 2b0147d..2b582c3 100644 (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);
index 0560d5d..e213d86 100644 (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 *);
index ecca562..629b0f3 100644 (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);