diff options
author | Ömer Sinan Ağacan <omeragacan@gmail.com> | 2016-06-10 07:13:47 -0400 |
---|---|---|
committer | Ömer Sinan Ağacan <omeragacan@gmail.com> | 2016-06-10 07:14:00 -0400 |
commit | 47d81732022e0327f7a5798898b40d1f1bdbb157 (patch) | |
tree | 40fbb17092397c1a07f54d519a7848f600fcc68b /rts/Printer.h | |
parent | b0a76643e979a2e5198875a9c99f5f625f318668 (diff) | |
download | haskell-47d81732022e0327f7a5798898b40d1f1bdbb157.tar.gz |
Remove Printer.c:prettyPrintClosure()
It turns out this function was unused and broken for a long time (fixed
with b0a7664). Removing it as it will probably get broken again in the
future and it's unused.
Reviewers: austin, erikd, simonmar, nomeata, bgamari
Reviewed By: nomeata, bgamari
Subscribers: Phyx, thomie, nomeata
Differential Revision: https://phabricator.haskell.org/D2322
Diffstat (limited to 'rts/Printer.h')
-rw-r--r-- | rts/Printer.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rts/Printer.h b/rts/Printer.h index bd2db35aeb..4db76057be 100644 --- a/rts/Printer.h +++ b/rts/Printer.h @@ -22,7 +22,6 @@ const char * info_type_by_ip ( const StgInfoTable *ip ); const char * info_update_frame ( const StgClosure *closure ); #ifdef DEBUG -extern void prettyPrintClosure (const StgClosure *obj); extern void printClosure ( const StgClosure *obj ); extern void printStackChunk ( StgPtr sp, StgPtr spLim ); extern void printTSO ( StgTSO *tso ); |