[Fb-contrib-commit] fb-contrib/src/com/mebigfatguy/fbcontrib/detect FloatingPointLoops.java,1.2,1.3
Brought to you by:
dbrosius
|
From: Dave B. <dbr...@us...> - 2005-11-07 02:48:10
|
Update of /cvsroot/fb-contrib/fb-contrib/src/com/mebigfatguy/fbcontrib/detect In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18795/src/com/mebigfatguy/fbcontrib/detect Modified Files: FloatingPointLoops.java Log Message: run fb on fb-contrib Index: FloatingPointLoops.java =================================================================== RCS file: /cvsroot/fb-contrib/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/FloatingPointLoops.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- FloatingPointLoops.java 4 Nov 2005 02:20:37 -0000 1.2 +++ FloatingPointLoops.java 7 Nov 2005 02:48:01 -0000 1.3 @@ -98,7 +98,7 @@ (seen == INVOKESPECIAL)) { String methodSig = FloatingPointLoops.this.getSigConstantOperand(); Type t = Type.getReturnType(methodSig); - return t.getSignature() != "V"; + return !"V".equals(t.getSignature()); } else if ((seen < ISTORE) || (seen > SASTORE)) { return true; } |