2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-03 09:50:36 +08:00

Wpadded.c: Gate alignment warning on ! default_packed.

* gcc.dg/Wpadded.c: Gate alignment warning on ! default_packed.
	Fix typo in comment.

From-SVN: r109496
This commit is contained in:
Hans-Peter Nilsson 2006-01-09 04:47:07 +00:00 committed by Hans-Peter Nilsson
parent 26ba43b9cb
commit 5109f57e37
2 changed files with 9 additions and 2 deletions
gcc/testsuite

@ -1,3 +1,8 @@
2006-01-09 Hans-Peter Nilsson <hp@axis.com>
* gcc.dg/Wpadded.c: Gate alignment warning on ! default_packed.
Fix typo in comment.
2006-01-09 Feng Wang <fengwang@nudt.edu.cn>
* gfortran.dg/single_char_string.f90: New test.

@ -2,10 +2,12 @@
/* { dg-do compile } */
/* -fpack-struct is necessary because the warning expected requires the initial
packing to be larger than 1, which cannot ge guaranteed for all targets. */
packing to be larger than 1, which cannot be guaranteed for all targets.
We won't get a warning anyway if the target has "packed" structure
layout. */
/* { dg-options "-Wpadded -fpack-struct=8" } */
struct foo {
char bar;
long baz; /* { dg-warning "padding struct to align" } */
long baz; /* { dg-warning "padding struct to align" "" { target { ! default_packed } } } */
} futz;