mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
objtool: Remove useless tests before save_reg()
save_reg already checks that the register being saved does not already have a saved state. Remove redundant checks before processing a register storing operation. Signed-off-by: Julien Thierry <jthierry@redhat.com> Signed-off-by: Josh Poimboeuf <jpoimboe@redhat.com>
This commit is contained in:
parent
edea9e6bcb
commit
f4f803984c
@ -2030,7 +2030,7 @@ static int update_cfi_state(struct instruction *insn, struct cfi_state *cfi,
|
||||
/* drap: push %rbp */
|
||||
cfi->stack_size = 0;
|
||||
|
||||
} else if (regs[op->src.reg].base == CFI_UNDEFINED) {
|
||||
} else {
|
||||
|
||||
/* drap: push %reg */
|
||||
save_reg(cfi, op->src.reg, CFI_BP, -cfi->stack_size);
|
||||
@ -2059,9 +2059,7 @@ static int update_cfi_state(struct instruction *insn, struct cfi_state *cfi,
|
||||
|
||||
/* save drap offset so we know when to restore it */
|
||||
cfi->drap_offset = op->dest.offset;
|
||||
}
|
||||
|
||||
else if (regs[op->src.reg].base == CFI_UNDEFINED) {
|
||||
} else {
|
||||
|
||||
/* drap: mov reg, disp(%rbp) */
|
||||
save_reg(cfi, op->src.reg, CFI_BP, op->dest.offset);
|
||||
|
Loading…
Reference in New Issue
Block a user