[Scummvm-cvs-logs] SF.net SVN: scummvm:[51633] tools/branches/gsoc2010-decompiler/decompiler/ control_flow.cpp

pidgeot at users.sourceforge.net pidgeot at users.sourceforge.net
Mon Aug 2 19:11:12 CEST 2010


Revision: 51633
          http://scummvm.svn.sourceforge.net/scummvm/?rev=51633&view=rev
Author:   pidgeot
Date:     2010-08-02 17:11:10 +0000 (Mon, 02 Aug 2010)

Log Message:
-----------
Remove some unnecessary debug output

Modified Paths:
--------------
    tools/branches/gsoc2010-decompiler/decompiler/control_flow.cpp

Modified: tools/branches/gsoc2010-decompiler/decompiler/control_flow.cpp
===================================================================
--- tools/branches/gsoc2010-decompiler/decompiler/control_flow.cpp	2010-08-02 17:09:51 UTC (rev 51632)
+++ tools/branches/gsoc2010-decompiler/decompiler/control_flow.cpp	2010-08-02 17:11:10 UTC (rev 51633)
@@ -427,7 +427,6 @@
 }
 
 bool ControlFlow::validateElseBlock(GroupPtr ifGroup, GroupPtr start, GroupPtr end) {
-	std::cerr << boost::format("Validating else blockfor 0x%08X: 0x%08X to 0x%08X\n") % ifGroup->_start->_address % start->_start->_address % end->_start->_address;
 	for (GroupPtr cursor = start; cursor != end; cursor = cursor->_next) {
 		if (cursor->_type == kIfCond || cursor->_type == kWhileCond || cursor->_type == kDoWhileCond) {
 			// Validate outgoing edges of conditions


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list