01: package experiments.instruction; 02: 03: /** 04: * Class used for testing. 05: * @author Tin Pavlinic 06: * @version $Revision: 414 $ 07: */ 08: public class FNeg { 09: public float method() { 10: float x = 50.0f; 11: float y = -x; 12: return y; 13: } 14: }