Bulletin number: 286 Products affected: D711D D611A D511A Description: unary minus on T414 floats Component: compiler Date: Mon May 21 15:01:56 BST 1990 ----- The use of a unary minus operator on a float variable when compiling for a T414 gives the compiler error: Fatal error -- error in Store/1; please submit a CSR example: void float_error() { float x; x= -x; } The solution is to either use doubles only or change the unary minus into a binary minus e.g: x = 0 - x;