Fix PR middle-end/98099
authorEric Botcazou <ebotcazou@adacore.com>
Thu, 3 Dec 2020 14:54:14 +0000 (15:54 +0100)
committerEric Botcazou <ebotcazou@adacore.com>
Thu, 3 Dec 2020 14:56:34 +0000 (15:56 +0100)
this replaces the ICE by a sorry message for the use of reverse scalar
storage order with 128-bit decimal floating-point type on 32-bit targets.

gcc/ChangeLog:
PR middle-end/98099
* expmed.c (flip_storage_order): In the case of a non-integer mode,
sorry out if the integer mode to be used instead is not supported.

gcc/testsuite/ChangeLog:
* gcc.dg/pr98099.c: New test.

gcc/expmed.c
gcc/testsuite/gcc.dg/pr98099.c [new file with mode: 0644]

index ce88f32296169a00cedb1f81a956203f948c12c9..0d600bd7b54c65603e2e9a129c0fd9a0879957c3 100644 (file)
@@ -412,7 +412,8 @@ flip_storage_order (machine_mode mode, rtx x)
          && __builtin_expect (reverse_float_storage_order_supported < 0, 0))
        check_reverse_float_storage_order_support ();
 
-      if (!int_mode_for_size (GET_MODE_PRECISION (mode), 0).exists (&int_mode))
+      if (!int_mode_for_size (GET_MODE_PRECISION (mode), 0).exists (&int_mode)
+         || !targetm.scalar_mode_supported_p (int_mode))
        {
          sorry ("reverse storage order for %smode", GET_MODE_NAME (mode));
          return x;
diff --git a/gcc/testsuite/gcc.dg/pr98099.c b/gcc/testsuite/gcc.dg/pr98099.c
new file mode 100644 (file)
index 0000000..34909f2
--- /dev/null
@@ -0,0 +1,12 @@
+/* PR middle-end/98099 */
+/* Reported by G. Steinmetz <gscfq@t-online.de> */
+
+/* { dg-do compile } */
+/* { dg-options "-fsso-struct=big-endian" } */
+
+struct S { _Decimal128 a; };
+
+_Decimal128 f (struct S x)
+{
+  return x.a; /* { dg-message "sorry, unimplemented: reverse storage order" "" { target { ! int128 } } } */
+}