From: mrs Date: Fri, 28 May 2010 17:53:56 +0000 (+0000) Subject: * objc.dg/stret-2.m: Fix to use more than 4 bytes. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95b91d4094007cdf14eb039983bc09477a96d2c8;p=thirdparty%2Fgcc.git * objc.dg/stret-2.m: Fix to use more than 4 bytes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159988 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/objc.dg/stret-2.m b/gcc/testsuite/objc.dg/stret-2.m index fccda3234334..e0fd8c2d8929 100644 --- a/gcc/testsuite/objc.dg/stret-2.m +++ b/gcc/testsuite/objc.dg/stret-2.m @@ -10,7 +10,8 @@ struct astruct { float a, b; -} glob = { 1.0, 2.0 }; + char c; +} glob = { 1.0, 2.0, 'a' }; struct bstruct { float a, b, c, d, e, f;