In Visual COBOL for eclipse we are facing the below issue
IF (Variable-1 < 0) OR
(Variable-2 < 0) OR
(Variable-3 < 0)
GO TO 500-FINALIZE.
The PIC clause and value for the 3 variables are as below.
Variable-1 (S9(005)V99)- 0000000 
Variable-2 (S9(005)V99)- 0000000 
Variable-3 (S9(005)V9(6)) - 00000000000 
The above condition is set to true but actually, it is not.
When we try SIGN-FIXUP compiler option it is working fine. Whether any other alternate solution is there for this issue?