diff options
Diffstat (limited to 'gcc/caller-save.c')
-rw-r--r-- | gcc/caller-save.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/caller-save.c b/gcc/caller-save.c index b05e8493a24..371b65219e2 100644 --- a/gcc/caller-save.c +++ b/gcc/caller-save.c @@ -196,10 +196,10 @@ init_caller_save () && reg_restore_code[i][j] != (enum insn_code)-1); if (ok) { - insn_extract (saveinsn); - ok = constrain_operands (reg_save_code[i][j], 1); - insn_extract (restinsn); - ok &= constrain_operands (reg_restore_code[i][j], 1); + extract_insn (saveinsn); + ok = constrain_operands (1); + extract_insn (restinsn); + ok &= constrain_operands (1); } if (! ok) |