Home | History | Annotate | Download | only in gas

Lines Matching refs:sign

57   <flonum> ::= <optional-sign> <decimal-number> <optional-exponent>
58 <optional-sign> ::= '+' | '-' | {empty}
65 | <exponent-character> <optional-sign> <integer>
127 address_of_generic_floating_point_number->sign = 0;
140 address_of_generic_floating_point_number->sign =
300 address_of_generic_floating_point_number->sign = digits_sign_char;
438 * The value of digits_flonum . sign should not be important.
439 * We have already decided the output's sign.
440 * We trust that the sign won't influence the other parts of the number!
444 * (2) in future there may be more meaning attached to sign,
449 digits_flonum.sign = '+';
477 /* From now on: the decimal exponent is > 0. Its sign is separate. */
490 power_of_10_flonum.sign = '+';
585 /* Assert sign of the number we made is '+'. */
586 address_of_generic_floating_point_number->sign = digits_sign_char;
601 printf ("flonum @%p %c e%ld", f, f->sign, f->exponent);