char *src = *ptr;
int i, l;
- while (*src == ' ')
+ while (is_whitespace (*src))
src++;
mode->mode = CLASS_CTRL;
int i;
int j;
- while (*src == ' ')
+ while (is_whitespace (*src))
src++;
mode->mode = CLASS_FLAGS;
char *src = *ptr;
int i, l;
- while (*src == ' ')
+ while (is_whitespace (*src))
src++;
mode->mode = CLASS_IMM;
char *src = *ptr;
int i, l;
- while (*src == ' ')
+ while (is_whitespace (*src))
src++;
mode->mode = CLASS_CC;
mode->mode = 0;
- while (*src == ' ')
+ while (is_whitespace (*src))
src++;
if (*src == '#')
{
case 0:
operand[0].mode = 0;
operand[1].mode = 0;
- while (*ptr == ' ')
+ while (is_whitespace (*ptr))
ptr++;
break;
if (opcode->arg_info[0] == CLASS_CC)
{
get_cc_operand (&ptr, operand + 0, 0);
- while (*ptr == ' ')
+ while (is_whitespace (*ptr))
ptr++;
if (*ptr && ! is_end_of_line[(unsigned char) *ptr])
{
else if (opcode->arg_info[0] == CLASS_FLAGS)
{
get_flags_operand (&ptr, operand + 0, 0);
- while (*ptr == ' ')
+ while (is_whitespace (*ptr))
ptr++;
if (*ptr && ! is_end_of_line[(unsigned char) *ptr])
{
if (opcode->arg_info[0] == CLASS_CC)
{
get_cc_operand (&ptr, operand + 0, 0);
- while (*ptr == ' ')
+ while (is_whitespace (*ptr))
ptr++;
if (*ptr != ',' && strchr (ptr + 1, ','))
{
opcode_entry_type *opcode;
/* Drop leading whitespace. */
- while (*str == ' ')
+ while (is_whitespace (*str))
str++;
/* Find the op code end. */
for (op_start = op_end = str;
- *op_end != 0 && *op_end != ' ' && ! is_end_of_line[(unsigned char) *op_end];
+ ! is_whitespace (*op_end) && ! is_end_of_stmt (*op_end);
op_end++)
;
oc = *old;
*old = '\n';
- while (*input_line_pointer == ' ')
+ while (is_whitespace (*input_line_pointer))
input_line_pointer++;
p = (pseudo_typeS *) (opcode->func);