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

« back to all changes in this revision

Viewing changes to gas/config/tc-v850.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
/* tc-v850.c -- Assembler code for the NEC V850
2
2
   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3
 
   2006, 2007  Free Software Foundation, Inc.
 
3
   2006, 2007, 2009  Free Software Foundation, Inc.
4
4
 
5
5
   This file is part of GAS, the GNU Assembler.
6
6
 
477
477
  if (! v850_relax)
478
478
    {
479
479
      if (type == 1)
480
 
        as_warn (".longcall pseudo-op seen when not relaxing");
 
480
        as_warn (_(".longcall pseudo-op seen when not relaxing"));
481
481
      else
482
 
        as_warn (".longjump pseudo-op seen when not relaxing");
 
482
        as_warn (_(".longjump pseudo-op seen when not relaxing"));
483
483
    }
484
484
 
485
485
  expression (&ex);
486
486
 
487
487
  if (ex.X_op != O_symbol || ex.X_add_number != 0)
488
488
    {
489
 
      as_bad ("bad .longcall format");
 
489
      as_bad (_("bad .longcall format"));
490
490
      ignore_rest_of_line ();
491
491
 
492
492
      return;
1505
1505
          else
1506
1506
            {
1507
1507
              if (file == (char *) NULL)
1508
 
                as_warn (message);
 
1508
                as_warn ("%s", message);
1509
1509
              else
1510
 
                as_warn_where (file, line, message);
 
1510
                as_warn_where (file, line, "%s", message);
1511
1511
            }
1512
1512
        }
1513
1513
    }