struct-layout-1_x1.h: Add __SIZE_TYPE__ cast to avoid pointer truncation warning.

2008-09-26  Kai Tietz  <kai.tietz@onevision.com>

	* g++.dg/compat/struct-layout-1_x1.h: Add __SIZE_TYPE__ cast
	to avoid pointer truncation warning.

From-SVN: r140686
This commit is contained in:
Kai Tietz 2008-09-26 08:08:38 +00:00 committed by Kai Tietz
parent 4ee279f254
commit 0edc11f5ab
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-09-26 Kai Tietz <kai.tietz@onevision.com>
* g++.dg/compat/struct-layout-1_x1.h: Add __SIZE_TYPE__ cast
to avoid pointer truncation warning.
2008-09-26 Dorit Nuzman <dorit@il.ibm.com>
PR tree-optimization/37574

View File

@ -56,7 +56,7 @@ void test##n (void) \
info.als = __alignof__ (s##n); \
info.ala0 = __alignof__ (a##n[0]); \
info.ala3 = __alignof__ (a##n[3]); \
if (((long) &a##n[3]) & (info.als - 1)) \
if (((long) (__SIZE_TYPE__) &a##n[3]) & (info.als - 1)) \
FAIL (n, 1); \
i = 0; j = 0; \
ops \