Commit 574531f2 by Nick Clifton Committed by Nick Clifton

remove compile time warnings about uninitilaised fileds

From-SVN: r30757
parent 94f9afc2
1999-12-02 Nick Clifton <nickc@cygnus.com>
* config/fp-bit.c: Initialise all fields of the NAN
constants.
* c-lex.c (check_newline): Pass pragma_getc and pragma_ungetc
to HANDLE_PRAGMA.
......
......@@ -395,9 +395,9 @@ FLO_union_type;
#else
#if defined L_thenan_sf
const fp_number_type __thenan_sf = { CLASS_SNAN };
const fp_number_type __thenan_sf = { CLASS_SNAN, 0, 0, (fractype) 0 };
#elif defined L_thenan_df
const fp_number_type __thenan_df = { CLASS_SNAN };
const fp_number_type __thenan_df = { CLASS_SNAN, 0, 0, (fractype) 0 };
#elif defined FLOAT
extern const fp_number_type __thenan_sf;
#else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment