diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2005-03-26 17:35:41 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2005-03-26 09:35:41 -0800 |
commit | d7b1468bf39286cfb5b7be86e87af3bea4e3b812 (patch) | |
tree | e00835f2b68d3123b855be6d9e668e0689dec9c3 /gcc/config/rs6000 | |
parent | a312242430aba54965cde34ef5f249751bd56497 (diff) | |
download | gcc-d7b1468bf39286cfb5b7be86e87af3bea4e3b812.zip gcc-d7b1468bf39286cfb5b7be86e87af3bea4e3b812.tar.gz gcc-d7b1468bf39286cfb5b7be86e87af3bea4e3b812.tar.bz2 |
re PR target/20636 (Bootstrap failure on Linux/PowerPC64 with rtl checking)
2005-03-26 Andrew Pinski <pinskia@physics.uc.edu>
PR target/20636
* config/rs6000/rs6000.md (extendsfdf2_fpr): Check to make
sure that we have a REG before getting its REGNO.
From-SVN: r97081
Diffstat (limited to 'gcc/config/rs6000')
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index b9fa39c..265c84f 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -4423,7 +4423,7 @@ # fmr %0,%1 lfs%U1%X1 %0,%1" - "&& reload_completed && REGNO (operands[0]) == REGNO (operands[1])" + "&& reload_completed && REG_P (operands[1]) && REGNO (operands[0]) == REGNO (operands[1])" [(const_int 0)] { emit_note (NOTE_INSN_DELETED); |