[Fb-contrib-commit] SF.net SVN: fb-contrib:[1550] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2010-05-08 04:24:55
|
Revision: 1550
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1550&view=rev
Author: dbrosius
Date: 2010-05-08 04:24:49 +0000 (Sat, 08 May 2010)
Log Message:
-----------
PCAIL
Modified Paths:
--------------
trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PossibleConstantAllocationInLoop.java
Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PossibleConstantAllocationInLoop.java
===================================================================
--- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PossibleConstantAllocationInLoop.java 2010-05-08 04:18:29 UTC (rev 1549)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PossibleConstantAllocationInLoop.java 2010-05-08 04:24:49 UTC (rev 1550)
@@ -186,7 +186,7 @@
allocations.remove(allocation);
storedAllocations.remove(reg);
} else {
- sawAllocationNumber = allocation.intValue();
+ sawAllocationNumber = allocation;
sawAllocation = true;
}
}
@@ -217,7 +217,7 @@
if (sawAllocation) {
if (stack.getStackDepth() > 0) {
OpcodeStack.Item item = stack.getStackItem(0);
- item.setUserValue(Integer.valueOf(sawAllocationNumber));
+ item.setUserValue(sawAllocationNumber);
}
if (seen == INVOKESPECIAL)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|