diff options
author | John Hodge <tpg@mutabah.net> | 2017-02-05 09:23:20 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2017-02-05 09:23:20 +0800 |
commit | 7fe22497382cbccb034af8c2ed9e5a8935c20eb5 (patch) | |
tree | e7f60197589e63d0b0e6fe58d039f1e8263a72e0 | |
parent | d4d3c1a258615f874fc731f3e90a71d8195a8961 (diff) | |
download | mrust-7fe22497382cbccb034af8c2ed9e5a8935c20eb5.tar.gz |
MIR Validate - (minor) Remove now-useless debug
-rw-r--r-- | src/mir/check.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mir/check.cpp b/src/mir/check.cpp index f332ab93..ae2887e0 100644 --- a/src/mir/check.cpp +++ b/src/mir/check.cpp @@ -199,11 +199,8 @@ void MIR_Validate_ValState(::MIR::TypeResolve& state, const ::MIR::Function& fcn bool operator==(const ValStates& x) const { if( ret_state != x.ret_state ) return false; if( arguments != x.arguments ) return false; - DEBUG("arg"); if( temporaries != x.temporaries ) return false; - DEBUG("tmp"); if( variables != x.variables ) return false; - DEBUG("var"); return true; } |