summaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorwehle <wehle@138bc75d-0d04-0410-961f-82ee72b054a4>2001-11-29 05:26:31 +0000
committerwehle <wehle@138bc75d-0d04-0410-961f-82ee72b054a4>2001-11-29 05:26:31 +0000
commit3635740658252995cebb2145e15738da52013fab (patch)
treeb63ff6cbf7cd1fa514eb2d20fc59dfb7c6fdd40d /gcc/config
parent35c5c31497f560aa68c226263d752dce14d5614d (diff)
downloadgcc-3635740658252995cebb2145e15738da52013fab.tar.gz
* alpha.md (tablejump): Use pic_offset_table_rtx
instead of gen_rtx_REG. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47436 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/alpha/alpha.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md
index c809d6c00f4..8f87646930e 100644
--- a/gcc/config/alpha/alpha.md
+++ b/gcc/config/alpha/alpha.md
@@ -4965,7 +4965,7 @@ fadd,fmul,fcpys,fdiv,fsqrt,misc,mvi,ftoi,itof,multi"
{
rtx dest = gen_reg_rtx (DImode);
emit_insn (gen_extendsidi2 (dest, operands[0]));
- emit_insn (gen_adddi3 (dest, gen_rtx_REG (DImode, 29), dest));
+ emit_insn (gen_adddi3 (dest, pic_offset_table_rtx, dest));
operands[0] = dest;
}
})