diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-12-29 20:58:30 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-12-29 20:58:30 -0500 |
commit | ed8fe831fe583e50c5b3a0c0096deaf350b0c309 (patch) | |
tree | bdcae19bec68d85e027866079079081709bc341d | |
parent | e9ccf35b8a18b542603714c84fa2869b24a17af0 (diff) | |
download | roux-ed8fe831fe583e50c5b3a0c0096deaf350b0c309.tar.gz |
remove debugging stub
-rw-r--r-- | isel.c | 4 |
1 files changed, 0 insertions, 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); - } } } |