[Fb-contrib-commit] SF.net SVN: fb-contrib: [547] trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/de
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-06-04 03:43:57
|
Revision: 547 Author: dbrosius Date: 2006-06-03 20:43:32 -0700 (Sat, 03 Jun 2006) ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=547&view=rev Log Message: ----------- remove some false positives Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UnnecessaryStoreBeforeReturn.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UnnecessaryStoreBeforeReturn.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UnnecessaryStoreBeforeReturn.java 2006-06-03 05:19:26 UTC (rev 546) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UnnecessaryStoreBeforeReturn.java 2006-06-04 03:43:32 UTC (rev 547) @@ -124,7 +124,7 @@ case SEEN_STORE: if (branchTargets.contains(Integer14.valueOf(getPC()))) { state = SEEN_NOTHING; - return; + break; } state = lookForLoad(seen) ? SEEN_LOAD : SEEN_NOTHING; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |