+2017-04-25 Martin Sebor <msebor@redhat.com>
+
+ PR tree-optimization/80497
+ * gimple-ssa-sprintf.c (get_int_range): Avoid assuming all integer
+ constants are representable in HOST_WIDE_INT.
+ (parse_directive): Ditto.
+
2017-04-25 Martin Sebor <msebor@redhat.com>
PR bootstrap/80486
*pmin = tree_to_shwi (TYPE_MIN_VALUE (type));
*pmax = tree_to_shwi (TYPE_MAX_VALUE (type));
}
- else if (TREE_CODE (arg) == INTEGER_CST)
+ else if (TREE_CODE (arg) == INTEGER_CST
+ && TYPE_PRECISION (TREE_TYPE (arg)) <= TYPE_PRECISION (type))
{
/* For a constant argument return its value adjusted as specified
by NEGATIVE and NEGBOUND and return true to indicate that the
if (width != -1)
dollar = width + info.argidx;
else if (star_width
- && TREE_CODE (star_width) == INTEGER_CST)
+ && TREE_CODE (star_width) == INTEGER_CST
+ && (TYPE_PRECISION (TREE_TYPE (star_width))
+ <= TYPE_PRECISION (integer_type_node)))
dollar = width + tree_to_shwi (star_width);
/* Bail when the numbered argument is out of range (it will
--- /dev/null
+/* PR tree-optimization/80497 - ICE at -O1 and above on valid code on
+ x86_64-linux-gnu in "tree_to_uhwi"
+ { dg-do compile }
+ { dg-options "-O2 -Wall -Wformat-overflow" }
+ { dg-require-effective-target int128 } */
+
+extern char buf[];
+
+const __int128_t sint128_max
+ = (__int128_t)1 << (sizeof sint128_max * __CHAR_BIT__ - 2);
+
+void fn0 (void)
+{
+ __int128_t si128 = 0;
+
+ __builtin_sprintf (buf, "%*i", si128, 0);
+
+ __builtin_sprintf (buf, "%.*i", si128, 0);
+
+ __builtin_sprintf (buf, "%i", si128);
+
+ __builtin_sprintf (buf, "%2$*1$i", si128, 0);
+
+ __builtin_sprintf (buf, "%2$.*1$i", si128, 0);
+}
+
+void fn1 (void)
+{
+ __int128_t si128 = sint128_max;
+
+ __builtin_sprintf (buf, "%*i", si128, 0);
+
+ __builtin_sprintf (buf, "%.*i", si128, 0);
+
+ __builtin_sprintf (buf, "%i", si128);
+
+ __builtin_sprintf (buf, "%2$*1$i", si128, 0);
+
+ __builtin_sprintf (buf, "%2$.*1$i", si128, 0);
+}
+
+/* { dg-prune-output "expects argument of type .int." } */