make sure that output_call is actually called

This commit is contained in:
Wolfgang Thaller 2014-09-24 22:39:18 +02:00
parent 03501ca622
commit 07451171d1

View File

@ -6904,7 +6904,7 @@
"!SIBLING_CALL_P (insn) && m68k_symbolic_call_var == M68K_SYMBOLIC_CALL_JSR" "!SIBLING_CALL_P (insn) && m68k_symbolic_call_var == M68K_SYMBOLIC_CALL_JSR"
{ {
operands[0] = operands[1]; operands[0] = operands[1];
return m68k_symbolic_call; return output_call (operands[0]);
} }
[(set_attr "type" "jsr") [(set_attr "type" "jsr")
(set_attr "opx" "1")]) (set_attr "opx" "1")])
@ -6919,7 +6919,7 @@
|| m68k_symbolic_call_var == M68K_SYMBOLIC_CALL_BSR_P)" || m68k_symbolic_call_var == M68K_SYMBOLIC_CALL_BSR_P)"
{ {
operands[0] = operands[1]; operands[0] = operands[1];
return m68k_symbolic_call; return output_call (operands[0]);
} }
[(set_attr "type" "bsr") [(set_attr "type" "bsr")
(set_attr "opx" "1")]) (set_attr "opx" "1")])
@ -6949,7 +6949,7 @@
"!SIBLING_CALL_P (insn) && m68k_symbolic_call_var == M68K_SYMBOLIC_CALL_JSR" "!SIBLING_CALL_P (insn) && m68k_symbolic_call_var == M68K_SYMBOLIC_CALL_JSR"
{ {
operands[0] = operands[1]; operands[0] = operands[1];
return m68k_symbolic_call; return output_call (operands[0]);
} }
[(set_attr "type" "jsr") [(set_attr "type" "jsr")
(set_attr "opx" "1")]) (set_attr "opx" "1")])
@ -6967,7 +6967,7 @@
|| m68k_symbolic_call_var == M68K_SYMBOLIC_CALL_BSR_P)" || m68k_symbolic_call_var == M68K_SYMBOLIC_CALL_BSR_P)"
{ {
operands[0] = operands[1]; operands[0] = operands[1];
return m68k_symbolic_call; return output_call (operands[0]);
} }
[(set_attr "type" "bsr") [(set_attr "type" "bsr")
(set_attr "opx" "1")]) (set_attr "opx" "1")])