added comment
authorMatthias Braun <matze@braunis.de>
Mon, 6 Aug 2007 22:39:28 +0000 (22:39 +0000)
committerMatthias Braun <matze@braunis.de>
Mon, 6 Aug 2007 22:39:28 +0000 (22:39 +0000)
[r15485]

ir/be/test/fehler62.c

index 76e32ac..479511b 100644 (file)
@@ -65,8 +65,11 @@ static rtx* t(rtx *loc, rtx insn) {
                        return &XEXP(x, 0);
                }
                split = t(&XEXP(x, 0), insn);
-               if(split)
+               if(split) {
+                       /* in r15484 (and probably earlier) tail-recursion produces a jump
+                          to the beginning here */
                        return split;
+               }
                return loc;
        }