diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-02 19:29:45 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-02 19:29:45 +0000 |
commit | 2936db7d2eb69550302536c42789201e6531d275 (patch) | |
tree | b4561ee06956c11ad15d4023db4a9cba5e5f42a0 /gcc/unroll.c | |
parent | e10090fc04bafa712139322652a79e99d19ee2b3 (diff) | |
download | gcc-2936db7d2eb69550302536c42789201e6531d275.tar.gz |
* unroll.c (copy_loop_body): Copy CONST_OR_PURE_CALL_P.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59732 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r-- | gcc/unroll.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index 3dea4510657..a357ea209cf 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -2214,6 +2214,7 @@ copy_loop_body (loop, copy_start, copy_end, map, exit_label, last_iteration, REG_NOTES (copy) = initial_reg_note_copy (REG_NOTES (insn), map); INSN_SCOPE (copy) = INSN_SCOPE (insn); SIBLING_CALL_P (copy) = SIBLING_CALL_P (insn); + CONST_OR_PURE_CALL_P (copy) = CONST_OR_PURE_CALL_P (insn); /* Because the USAGE information potentially contains objects other than hard registers, we need to copy it. */ |