]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
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 d0f76e0b764907bb1087d7da9471caa0c517d98b..bfffc3269ff9a1ac65ae988ca1ebcc60350d871a 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 2b0147d11c47eaa04b4251f6934bbb111f9a6b05..2b582c3ebe8b06ee646380bb7ee79944740b6632 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 0560d5d287129b02641c94ce37b2469a64cfc6ca..e213d860e2787f68efa4e657f9b964e8d21300c9 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 ecca562775dd48f0d014731123826a3ddbcaabed..629b0f329e8112c59d0a661a023506908b6165f0 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);