+2004-09-25  Jan Hubicka  <jh@suse.cz>
+
+       * compile/30040909-1.c: New test.
+       * compile/30040907-1.c: New test.
+
 2004-09-25  Richard Sandiford  <rsandifo@redhat.com>
 
        * gcc.c-torture/execute/va-arg-26.c: New test.
 
--- /dev/null
+void ProdWord_bla ( gtL, gtRes, lnL )
+    int *gtL, *gtRes;
+    int lnL;
+{
+    while ( 1 < lnL )
+    {
+        *gtRes++ = *gtL++;
+        --lnL;
+    }
+    if ( 0 < lnL )
+        if ( gtL[0] == gtL[1] )
+            *gtRes++ = 0;
+}
 
--- /dev/null
+static __inline__ int
+one_utf8_to_utf16 () { }
+
+static __inline__ unsigned char
+conversion_loop (int (*const one_conversion)())
+{
+return one_conversion ();
+}
+static unsigned char
+convert_utf8_utf16 ()
+{
+  return conversion_loop (one_utf8_to_utf16);
+}