Commit 5ca2111f by Catherine Moore Committed by Catherine Moore

Extend meaning of 'c' operands to support .vtinherit.

From-SVN: r23038
parent d5e4ff48
Tue Oct 13 08:00:52 1998 Catherine Moore <clm@cygnus.com>
* config/v850/v850.c (print_operand): Extend meaning
of 'c' operands to support .vtinherit.
Tue Oct 13 21:38:35 1998 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* config/c4x/c4x.c: Convert to gen_rtx_FOO.
......
......@@ -365,9 +365,16 @@ print_operand (file, x, code)
switch (code)
{
case 'c':
/* We use 'c' operands with symbols for .vtinherit */
if (GET_CODE (x) == SYMBOL_REF)
{
output_addr_const(file, x);
break;
}
/* fall through */
case 'b':
case 'B':
case 'c':
case 'C':
switch ((code == 'B' || code == 'C')
? reverse_condition (GET_CODE (x)) : GET_CODE (x))
......
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