Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
None
-
None
-
None
-
Linux IA32/EM64T/IA64
Description
It's very important for Eclipse/TPTP project that code meets compilation requirements of our project.
On stage of compiling on Linux with gcc 2.96 compilation error occurred:
verifier-3363/java5/stackmap_5.h:245: operands to ?: have different types
verifier-3363/java5/stackmap_5.h:245 SmConstant ret = isVariable() ? getVariable()->getAnyIncomingValue() : const_val;
FAST FIX:
SmConstant ret = isVariable() ? getVariable()->getAnyIncomingValue() : (SmConstant)const_val;