diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-04 06:12:54 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-04 06:12:54 +0000 |
commit | 8fd5918e24a68c2511b56948d91eb8c1b2202c49 (patch) | |
tree | 763fd168a4e83cbf18b4e87455b7eb2ea89cb2f1 /gcc/doc/md.texi | |
parent | b074b70642afdd20947c8efc6a5a52bc08646dc3 (diff) | |
download | gcc-8fd5918e24a68c2511b56948d91eb8c1b2202c49.tar.gz |
* emit-rtl.c (gen_rtx): Remove.
* genattrtab.c: Don't mention gen_rtx in a comment.
* rtl.h: Remove the prototype for gen_rtx.
* doc/md.texi: Replace gen_rtx with gen_rtx_REG.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77224 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/md.texi')
-rw-r--r-- | gcc/doc/md.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi index e81e350578b..f8bf54ef7b9 100644 --- a/gcc/doc/md.texi +++ b/gcc/doc/md.texi @@ -4595,7 +4595,7 @@ Here is an example, taken from the 68000 machine description: "FP_REG_P (operands[0]) && ! FP_REG_P (operands[1])" @{ rtx xoperands[2]; - xoperands[1] = gen_rtx (REG, SImode, REGNO (operands[1]) + 1); + xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1); #ifdef MOTOROLA output_asm_insn ("move.l %1,(sp)", xoperands); output_asm_insn ("move.l %1,-(sp)", operands); |