* src/pic/device.h: removed AssignedMemory structure and macros
[fw/sdcc] / src / pic / pcode.c
index fa1d6eefa50d9c1467d16ec491a5846f34d5240a..45aef3532bd98e9d06ebf501e3827f8c856e2fa9 100644 (file)
@@ -5274,13 +5274,7 @@ static unsigned register_reassign(pBlock *pb, unsigned idx)
                return idx;
 
        if (pb->visited) {
-           static int output = 0;
-           if (output < 3) {
-               pc = findNextpCode(pb->pcHead, PC_FUNCTION);
-               fprintf(stderr, "WARNING: Recursive code (%s) probably won't work, check the .asm file.\n",
-                       pc ? PCF(pc)->fname : "unknown function");
-               output++;
-           }
+           /* TODO: Recursion detection missing, should emit a warning as recursive code will fail. */
            return idx;
        }