[Fb-contrib-commit] SF.net SVN: fb-contrib: [940] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
From: <dbr...@us...> - 2007-10-18 05:37:12
|
Revision: 940 http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=940&view=rev Author: dbrosius Date: 2007-10-17 22:37:16 -0700 (Wed, 17 Oct 2007) Log Message: ----------- record IFNULL and IFNONNULL branch targets Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java 2007-10-18 03:44:58 UTC (rev 939) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/SillynessPotPourri.java 2007-10-18 05:37:16 UTC (rev 940) @@ -99,7 +99,7 @@ try { stack.mergeJumps(this); - if ((seen >= IFEQ) && (seen <= GOTO)) { + if (((seen >= IFEQ) && (seen <= GOTO)) || (seen == IFNULL) || (seen == IFNONNULL) || (seen == GOTO_W)) { Integer branchTarget = Integer.valueOf(getBranchTarget()); Set<Integer> branchInsSet = branchTargets.get(branchTarget); if (branchInsSet == null) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |