re PR rtl-optimization/44031 (ice in subst_reloads, at reload.c:6327)
authorEric Botcazou <ebotcazou@adacore.com>
Mon, 31 Jan 2011 10:45:20 +0000 (10:45 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Mon, 31 Jan 2011 10:45:20 +0000 (10:45 +0000)
PR rtl-optimization/44031
* gcc.c-torture/compile/20110131-1.c: New test.

From-SVN: r169433

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/20110131-1.c [new file with mode: 0644]

index c8de82a755b431780b15c8b955e26810d2396ab2..bde5bc0dc28028e278c280aefe09f1fcee84b192 100644 (file)
@@ -1,3 +1,8 @@
+2011-01-31  Eric Botcazou  <ebotcazou@adacore.com>
+
+       PR rtl-optimization/44031
+       * gcc.c-torture/compile/20110131-1.c: New test.
+
 2011-01-31  Tobias Burnus  <burnus@net-b.de>
 
        PR fortran/47042
diff --git a/gcc/testsuite/gcc.c-torture/compile/20110131-1.c b/gcc/testsuite/gcc.c-torture/compile/20110131-1.c
new file mode 100644 (file)
index 0000000..8ce68de
--- /dev/null
@@ -0,0 +1,38 @@
+/* PR rtl-optimization/44031 */
+/* Testcase by John Regehr <regehr@cs.utah.edu> */
+
+typedef unsigned char uint8_t;
+typedef unsigned int uint32_t;
+typedef unsigned long int uint64_t;
+
+static uint32_t
+safe_add_func_uint32_t_u_u (uint32_t ui1, uint32_t ui2)
+{
+  return ui1 + ui2;
+}
+
+static uint64_t
+safe_div_func_uint64_t_u_u (uint64_t ui1, uint32_t ui2)
+{
+  return ui2 ? : (ui1 / ui2);
+}
+
+uint8_t g_55;
+uint8_t *g_73 = &g_55;
+uint8_t **g_332 = &g_73;
+
+int func_38(uint8_t *,int);
+int func_8(int);
+
+int int321 (void)
+{
+  uint8_t l_26[4];
+  uint8_t *l_238 = &l_26[2];
+  uint8_t l_400;
+  l_400 &=
+    func_38 (&l_26[3],
+         safe_add_func_uint32_t_u_u (safe_div_func_uint64_t_u_u
+                     (1, **g_332),
+                     *l_238) >= *l_238 < func_8 (0)), 1;
+  return 0;
+}