diff options
author | Michael Hayes <mhayes@redhat.com> | 2000-10-29 09:14:22 +0000 |
---|---|---|
committer | Michael Hayes <m.hayes@gcc.gnu.org> | 2000-10-29 09:14:22 +0000 |
commit | 6f268adf3b95994c68ba45ad1ceaa18b776f6b29 (patch) | |
tree | ef28294b2f7f74ac91b7b0f377a9b7b33759b4c4 /gcc/integrate.c | |
parent | 2bf9b928a5cdead647b876ae2bb76efe0d63324f (diff) | |
download | gcc-6f268adf3b95994c68ba45ad1ceaa18b776f6b29.zip gcc-6f268adf3b95994c68ba45ad1ceaa18b776f6b29.tar.gz gcc-6f268adf3b95994c68ba45ad1ceaa18b776f6b29.tar.bz2 |
* integrate.c (copy_insn_list): Copy the unchanging flag for calls.
From-SVN: r37121
Diffstat (limited to 'gcc/integrate.c')
-rw-r--r-- | gcc/integrate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index 3438790..8bf949b 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -1468,6 +1468,7 @@ copy_insn_list (insns, map, static_chain_value) copy = emit_call_insn (pattern); SIBLING_CALL_P (copy) = SIBLING_CALL_P (insn); + CONST_CALL_P (copy) = CONST_CALL_P (insn); /* Because the USAGE information potentially contains objects other than hard registers, we need to copy it. */ |