~ubuntu-branches/debian/squeeze/binutils/squeeze

« back to all changes in this revision

Viewing changes to gas/config/atof-ieee.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-09-10 17:05:30 UTC
  • mfrom: (1.4.5 upstream) (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090910170530-wa6gpju9pq5c56on
Tags: 2.19.91.20090910-1
* Snapshot, taken from the 2.20 release branch 20090910, corresponding
  to the 2.19.90 upstream snapshot.
* Fix Thumb-2 shared libraries (Daniel Jacobowitz), patch taken
  from the trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* atof_ieee.c - turn a Flonum into an IEEE floating point number
2
2
   Copyright 1987, 1992, 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2005,
3
 
   2007 Free Software Foundation, Inc.
 
3
   2007, 2009  Free Software Foundation, Inc.
4
4
 
5
5
   This file is part of GAS, the GNU Assembler.
6
6
 
285
285
  if (generic_floating_point_number.sign == 0)
286
286
    {
287
287
      if (TC_LARGEST_EXPONENT_IS_NORMAL (precision))
288
 
        as_warn ("NaNs are not supported by this target\n");
 
288
        as_warn (_("NaNs are not supported by this target\n"));
289
289
      if (precision == F_PRECISION)
290
290
        {
291
291
          words[0] = 0x7fff;
324
324
  else if (generic_floating_point_number.sign == 'P')
325
325
    {
326
326
      if (TC_LARGEST_EXPONENT_IS_NORMAL (precision))
327
 
        as_warn ("Infinities are not supported by this target\n");
 
327
        as_warn (_("Infinities are not supported by this target\n"));
328
328
 
329
329
      /* +INF:  Do the right thing.  */
330
330
      if (precision == F_PRECISION)
365
365
  else if (generic_floating_point_number.sign == 'N')
366
366
    {
367
367
      if (TC_LARGEST_EXPONENT_IS_NORMAL (precision))
368
 
        as_warn ("Infinities are not supported by this target\n");
 
368
        as_warn (_("Infinities are not supported by this target\n"));
369
369
 
370
370
      /* Negative INF.  */
371
371
      if (precision == F_PRECISION)