diff options
author | Jeff Law <jlaw@tachyum.com> | 2021-05-05 09:15:42 -0600 |
---|---|---|
committer | Jeff Law <jlaw@tachyum.com> | 2021-05-05 09:17:14 -0600 |
commit | b927ffdd6cecd0eeda6ef77df2623519870b1e75 (patch) | |
tree | 13f15620b9a5fb931658bd7d9fbe17049ac5914d /gcc | |
parent | bb283170e7a1f39bf533651418daf10ad18eccfc (diff) | |
download | gcc-b927ffdd6cecd0eeda6ef77df2623519870b1e75.zip gcc-b927ffdd6cecd0eeda6ef77df2623519870b1e75.tar.gz gcc-b927ffdd6cecd0eeda6ef77df2623519870b1e75.tar.bz2 |
Remove cc0 remnants from avr port
gcc/
* config/avr/avr.md: Remove references to CC_STATUS_INIT.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/avr/avr.md | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/config/avr/avr.md b/gcc/config/avr/avr.md index a1a325b..271f95f 100644 --- a/gcc/config/avr/avr.md +++ b/gcc/config/avr/avr.md @@ -7668,7 +7668,6 @@ { const char *op; int jump_mode; - CC_STATUS_INIT; if (test_hard_reg_class (ADDW_REGS, operands[0])) output_asm_insn ("sbiw %0,1" CR_TAB "sbc %C0,__zero_reg__" CR_TAB @@ -7713,7 +7712,6 @@ { const char *op; int jump_mode; - CC_STATUS_INIT; if (test_hard_reg_class (ADDW_REGS, operands[0])) output_asm_insn ("sbiw %0,1", operands); else @@ -7756,7 +7754,6 @@ { const char *op; int jump_mode; - CC_STATUS_INIT; if (test_hard_reg_class (ADDW_REGS, operands[0])) output_asm_insn ("sbiw %0,1", operands); else @@ -7799,7 +7796,6 @@ { const char *op; int jump_mode; - CC_STATUS_INIT; output_asm_insn ("ldi %3,1" CR_TAB "sub %A0,%3" CR_TAB "sbc %B0,__zero_reg__", operands); |