pr52132.c: Fix FAIL on 16-bit int platforms.
authorGeorg-Johann Lay <avr@gjlay.de>
Mon, 20 Feb 2012 14:06:00 +0000 (14:06 +0000)
committerGeorg-Johann Lay <gjl@gcc.gnu.org>
Mon, 20 Feb 2012 14:06:00 +0000 (14:06 +0000)
* gcc.dg/pr52132.c: Fix FAIL on 16-bit int platforms.

From-SVN: r184393

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr52132.c

index 1287d7acb536a8fb15c7b66e251987ef1e8994b0..2497a794ff114b03f04c833d898d246b7c4848ed 100644 (file)
@@ -1,3 +1,7 @@
+2012-02-20  Georg-Johann Lay  <avr@gjlay.de>
+       
+       * gcc.dg/pr52132.c: Fix FAIL on 16-bit int platforms.
+
 2012-02-20  Jakub Jelinek  <jakub@redhat.com>
 
        PR tree-optimization/52286
index 8374994424ae1d67804a1d4ff8d9253964faf575..ed1eb1becd2a4dbced2125d6cbacec495389b801 100644 (file)
@@ -2,6 +2,11 @@
 /* { dg-do compile } */
 /* { dg-options "-std=c99 -O2 -g" } */
 
+#if  (__SIZEOF_INT__ < __SIZEOF_FLOAT__) \
+  && (__SIZEOF_LONG__ == __SIZEOF_FLOAT__)
+#define int long
+#endif
+
 int l;
 void bar (void);
 
@@ -10,7 +15,11 @@ foo (int *x, float y)
 {
   float b;
   union { float f; int i; } u = { .f = y };
+#if  (__SIZEOF_INT__ < __SIZEOF_FLOAT__)
+  u.i += 127L << 23;
+#else
   u.i += 127 << 23;
+#endif
   u.f = ((-1.0f / 3) * u.f + 2) * u.f - 2.0f / 3;
   b = 0.5 * (u.f + l);
   if (b >= *x)