Commit 4fce8e83 by Manfred Hollstein Committed by Manfred Hollstein

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
parent 93a46d8d
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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment