[Fb-contrib-commit] SF.net SVN: fb-contrib: [794] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/d
Brought to you by:
dbrosius
From: <dbr...@us...> - 2007-01-28 20:43:31
|
Revision: 794 http://svn.sourceforge.net/fb-contrib/?rev=794&view=rev Author: dbrosius Date: 2007-01-28 12:43:32 -0800 (Sun, 28 Jan 2007) Log Message: ----------- BAS fixes Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseSplit.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseSplit.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseSplit.java 2007-01-28 20:42:31 UTC (rev 793) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/UseSplit.java 2007-01-28 20:43:32 UTC (rev 794) @@ -111,9 +111,9 @@ return; } if ((seen == ASTORE) || ((seen >= ASTORE_0) && (seen <= ASTORE_3))) { - int reg = RegisterUtils.getAStoreReg(this, seen); if (stack.getStackDepth() > 0) { OpcodeStack.Item item = stack.getStackItem(0); + int reg = RegisterUtils.getAStoreReg(this, seen); regValueType.put(Integer.valueOf(reg), (Integer)item.getUserValue()); } state = SEEN_NOTHING; @@ -129,9 +129,9 @@ return; } if ((seen == ISTORE) || ((seen >= ISTORE_0) && (seen <= ISTORE_3))) { - int reg = RegisterUtils.getStoreReg(this, seen); if (stack.getStackDepth() > 0) { OpcodeStack.Item item = stack.getStackItem(0); + int reg = RegisterUtils.getStoreReg(this, seen); regValueType.put(Integer.valueOf(reg), (Integer)item.getUserValue()); } state = SEEN_NOTHING; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |