Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tcg/aarch64-tcti/tcg-target.c.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2188,7 +2188,10 @@ uintptr_t QEMU_DISABLE_CFI tcg_qemu_tb_exec(CPUArchState *env, const void *v_tb_
"x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15",

// We also use x26/x27 for temporary values, and x28 as our bytecode poitner.
"x25", "x26", "x27", "x28", "cc", "memory"
"x25", "x26", "x27", "x28", "cc", "memory",

// LR (x30) also used by blr instruction.
"x30"
);

return return_value;
Expand Down
Loading