[Fb-contrib-commit] SF.net SVN: fb-contrib:[1656] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2011-03-06 16:36:17
|
Revision: 1656
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1656&view=rev
Author: dbrosius
Date: 2011-03-06 16:36:11 +0000 (Sun, 06 Mar 2011)
Log Message:
-----------
LSTORE goes up to 3
Modified Paths:
--------------
trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java
Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java
===================================================================
--- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java 2011-03-06 16:30:15 UTC (rev 1655)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/BloatedAssignmentScope.java 2011-03-06 16:36:11 UTC (rev 1656)
@@ -154,7 +154,7 @@
|| (seen == DSTORE)
|| ((seen >= ASTORE_0) && (seen <= ASTORE_3))
|| ((seen >= ISTORE_0) && (seen <= ISTORE_3))
- || ((seen >= LSTORE_0) && (seen <= LSTORE_1))
+ || ((seen >= LSTORE_0) && (seen <= LSTORE_3))
|| ((seen >= FSTORE_0) && (seen <= FSTORE_1))
|| ((seen >= DSTORE_0) && (seen <= DSTORE_1))) {
int reg = RegisterUtils.getStoreReg(this, seen);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|