[Fb-contrib-commit] SF.net SVN: fb-contrib:[1465] trunk/fb-contrib/src/com/mebigfatguy/ fbcontrib/
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2010-01-10 17:59:04
|
Revision: 1465
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1465&view=rev
Author: dbrosius
Date: 2010-01-10 17:58:57 +0000 (Sun, 10 Jan 2010)
Log Message:
-----------
add GOTO/GOTO_W support
Modified Paths:
--------------
trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PoorlyDefinedParameter.java
Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PoorlyDefinedParameter.java
===================================================================
--- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PoorlyDefinedParameter.java 2010-01-10 17:39:51 UTC (rev 1464)
+++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/PoorlyDefinedParameter.java 2010-01-10 17:58:57 UTC (rev 1465)
@@ -172,7 +172,7 @@
{
int insTarget = -1;
- if ((seen >= IFEQ) && (seen <= IF_ACMPNE)) {
+ if (((seen >= IFEQ) && (seen <= IF_ACMPNE)) || (seen == GOTO) || (seen == GOTO_W)) {
insTarget = getBranchTarget();
if (insTarget < getPC())
insTarget = -1;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|