mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-24 17:29:38 +00:00
make sure that output_call is actually called
This commit is contained in:
parent
03501ca622
commit
07451171d1
@ -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")])
|
||||||
|
Loading…
Reference in New Issue
Block a user