+2009-08-17 Nick Clifton <nickc@redhat.com>
+
+ * config/tc-microblaze.c: Include safe-ctype.h instad of ctype.h.
+ (parse_reg): Use safe-ctype.h macros.
+ (parse_exp): Likewise.
+ (md_assemble): Likewise.
+
2009-08-11 DJ Delorie <dj@redhat.com>
* config/tc-mep.c (md_estimate_size_before_relax): Handle weak
(md_convert_frag): Likewise.
(md_pcrel_from_section): Likewise.
(mep_force_relocation): Likewise.
-
+
2009-08-11 Bernd Schmidt <bernd.schmidt@analog.com>
* config/bfin-parse.y (gen_multi_instr_1): New function.
#define DEFINE_TABLE
#include "../opcodes/microblaze-opc.h"
#include "../opcodes/microblaze-opcm.h"
-#include <ctype.h>
+#include "safe-ctype.h"
#include <string.h>
#include <dwarf2dbg.h>
#include "aout/stab_gnu.h"
unsigned tmpreg = 0;
/* Strip leading whitespace. */
- while (isspace (* s))
+ while (ISSPACE (* s))
++ s;
if (strncasecmp (s, "rpc", 3) == 0)
/* MMU registers end. */
else if (strncasecmp (s, "rpvr", 4) == 0)
{
- if (isdigit (s[4]) && isdigit (s[5]))
+ if (ISDIGIT (s[4]) && ISDIGIT (s[5]))
{
tmpreg = (s[4]-'0')*10 + s[5] - '0';
s += 6;
}
- else if (isdigit (s[4]))
+ else if (ISDIGIT (s[4]))
{
tmpreg = s[4] - '0';
s += 5;
}
else if (strncasecmp (s, "rfsl", 4) == 0)
{
- if (isdigit (s[4]) && isdigit (s[5]))
+ if (ISDIGIT (s[4]) && ISDIGIT (s[5]))
{
tmpreg = (s[4] - '0') * 10 + s[5] - '0';
s += 6;
}
- else if (isdigit (s[4]))
+ else if (ISDIGIT (s[4]))
{
tmpreg = s[4] - '0';
s += 5;
else
as_bad (_("register expected, but saw '%.6s'"), s);
- if ((int)tmpreg >= MIN_REGNUM && tmpreg <= MAX_REGNUM)
+ if ((int) tmpreg >= MIN_REGNUM && tmpreg <= MAX_REGNUM)
*reg = tmpreg;
else
{
}
else
{
- if (tolower (s[0]) == 'r')
+ if (TOLOWER (s[0]) == 'r')
{
- if (isdigit (s[1]) && isdigit (s[2]))
+ if (ISDIGIT (s[1]) && ISDIGIT (s[2]))
{
tmpreg = (s[1] - '0') * 10 + s[2] - '0';
s += 3;
}
- else if (isdigit (s[1]))
+ else if (ISDIGIT (s[1]))
{
tmpreg = s[1] - '0';
s += 2;
char *new;
/* Skip whitespace. */
- while (isspace (* s))
+ while (ISSPACE (* s))
++ s;
save = input_line_pointer;
char name[20];
/* Drop leading whitespace. */
- while (isspace (* str))
+ while (ISSPACE (* str))
str ++;
/* Find the op code end. */
}
/* Drop whitespace after all the operands have been parsed. */
- while (isspace (* op_end))
+ while (ISSPACE (* op_end))
op_end ++;
/* Give warning message if the insn has more operands than required. */