From ed8fe831fe583e50c5b3a0c0096deaf350b0c309 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux <quentin.carbonneaux@yale.edu> Date: Thu, 29 Dec 2016 20:58:30 -0500 Subject: [PATCH] remove debugging stub --- isel.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/isel.c b/isel.c index 708cc0d..52ba599 100644 --- a/isel.c +++ b/isel.c @@ -623,9 +623,5 @@ isel(Fn *fn) if (debug['I']) { fprintf(stderr, "\n> After instruction selection:\n"); printfn(fn, stderr); - for (n=0; n<fn->ntmp; ++n) { - if (strcmp(fn->tmp[n].name, "i") == 0) - fprintf(stderr, ">> nuse for i: %d\n", fn->tmp[n].nuse); - } } }