diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2001-10-24 19:36:36 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-10-24 15:36:36 -0400 |
commit | 724035826b67d8c72b865893451555100f3d4af4 (patch) | |
tree | 93d1c2c15e409b62124f692e931645eb49aec068 /gcc/integrate.c | |
parent | 5a6943c725ab224a58e9e5e4e8c5d00a7fe5107c (diff) | |
download | gcc-724035826b67d8c72b865893451555100f3d4af4.zip gcc-724035826b67d8c72b865893451555100f3d4af4.tar.gz gcc-724035826b67d8c72b865893451555100f3d4af4.tar.bz2 |
integrate.c (copy_rtx_and_substitute, case CALL): Fix error in last change.
* integrate.c (copy_rtx_and_substitute, case CALL): Fix error in last
change.
From-SVN: r46471
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 0552267..c8c60b2 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, |