mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-28 12:15:24 +08:00
i386.md (andsi): Add default case in enumeration switch.
d * i386.md (andsi): Add default case in enumeration switch. (iorsi3): Likewise. (iorhi3): Likewise. (xorsi3): Likewise. * call.c (default_parm_conversions): Remove prototype definition. (build_method_call): Remove unused variable result. (build_over_call): Add default case in enumeration switch. From-SVN: r18493
This commit is contained in:
parent
93a46d8d6a
commit
4fce8e83ba
@ -1,3 +1,10 @@
|
||||
Thu Mar 12 09:11:35 1998 Manfred Hollstein <manfred@s-direktnet.de>
|
||||
|
||||
* i386.md (andsi): Add default case in enumeration switch.
|
||||
(iorsi3): Likewise.
|
||||
(iorhi3): Likewise.
|
||||
(xorsi3): Likewise.
|
||||
|
||||
Thu Mar 12 08:37:02 1998 Manfred Hollstein <manfred@s-direktnet.de>
|
||||
|
||||
* c-decl (finish_struct): Change type of min_align to unsigned.
|
||||
|
@ -3797,6 +3797,9 @@ word_zero_and_operation:
|
||||
operands[0] = adj_offsettable_operand (operands[0], 2);
|
||||
goto word_zero_and_operation;
|
||||
}
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return AS2 (and%L0,%2,%0);
|
||||
@ -3995,6 +3998,9 @@ byte_or_operation:
|
||||
operands[0] = adj_offsettable_operand (operands[0], 3);
|
||||
goto byte_or_operation;
|
||||
}
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return AS2 (or%L0,%2,%0);
|
||||
@ -4058,6 +4064,9 @@ byte_or_operation:
|
||||
|
||||
goto byte_or_operation;
|
||||
}
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
if (REG_P (operands[0])
|
||||
@ -4168,6 +4177,9 @@ byte_xor_operation:
|
||||
operands[0] = adj_offsettable_operand (operands[0], 3);
|
||||
goto byte_xor_operation;
|
||||
}
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return AS2 (xor%L0,%2,%0);
|
||||
|
@ -3341,6 +3341,8 @@ build_over_call (fn, convs, args, flags)
|
||||
if (converted_args == 0)
|
||||
return integer_zero_node;
|
||||
return build_unary_op (ABS_EXPR, TREE_VALUE (converted_args), 0);
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
fn = build_call (fn, TREE_TYPE (TREE_TYPE (TREE_TYPE (fn))), converted_args);
|
||||
|
Loading…
Reference in New Issue
Block a user