Commit f0da48d2 by Brendan Kehoe

fix typo

From-SVN: r22186
parent 8a2cf1b4
...@@ -1428,7 +1428,7 @@ fundamental_type_code (type) ...@@ -1428,7 +1428,7 @@ fundamental_type_code (type)
So we have to tell the debugger that the type is float to So we have to tell the debugger that the type is float to
make the output of the 'print' command etc. readable. */ make the output of the 'print' command etc. readable. */
if (DOUBLE_TYPE_SIZE == FLOAT_TYPE_SIZE && FLOAT_TYPE_SIZE == 32) if (DOUBLE_TYPE_SIZE == FLOAT_TYPE_SIZE && FLOAT_TYPE_SIZE == 32)
return return FT_float; return FT_float;
return FT_dbl_prec_float; return FT_dbl_prec_float;
} }
if (TYPE_PRECISION (type) == FLOAT_TYPE_SIZE) if (TYPE_PRECISION (type) == FLOAT_TYPE_SIZE)
......
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