diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-24 19:36:36 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-24 19:36:36 +0000 |
commit | 10159af365137961781f9986bf6e66146277e5f7 (patch) | |
tree | 93d1c2c15e409b62124f692e931645eb49aec068 /gcc/integrate.c | |
parent | 66fb47446f1ba9c65dba0dfdf2d99a134a3e5f13 (diff) | |
download | gcc-10159af365137961781f9986bf6e66146277e5f7.tar.gz |
* integrate.c (copy_rtx_and_substitute, case CALL): Fix error in last
change.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46471 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index 05522671f46..c8c60b263b9 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -2190,7 +2190,7 @@ copy_rtx_and_substitute (orig, map, for_lhs) copy_rtx_and_substitute (XEXP (XEXP (orig, 0), 0), map, 0)); - MEM_COPY_ATTRIBUTES (copy, orig); + MEM_COPY_ATTRIBUTES (copy, XEXP (orig, 0)); return gen_rtx_CALL (GET_MODE (orig), copy, |