diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-11 20:16:12 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-11 20:16:12 +0000 |
| commit | 911d4e2e41f3722a04a147cfc6d9b12c014aaea1 (patch) | |
| tree | 23d2a9dfb45208c4879271550c47c17a38a8f5bc | |
| parent | 23fa08a2e17962ce4d215f4b0739d06914efaeef (diff) | |
| download | ppe42-gcc-911d4e2e41f3722a04a147cfc6d9b12c014aaea1.tar.gz ppe42-gcc-911d4e2e41f3722a04a147cfc6d9b12c014aaea1.zip | |
* combine.c (distribute_notes): Place REG_SETJMP.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44806 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/combine.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 481c55cf8aa..68d9b255747 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2001-08-11 Richard Henderson <rth@redhat.com> + * combine.c (distribute_notes): Place REG_SETJMP. + +2001-08-11 Richard Henderson <rth@redhat.com> + * doc/extend.texi (Arrays and pointers implementation): Discourage relying on sign-extension of pointers. diff --git a/gcc/combine.c b/gcc/combine.c index 81231804823..8a5fa637225 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -12010,6 +12010,7 @@ distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1) case REG_EH_RETHROW: case REG_NORETURN: + case REG_SETJMP: /* These notes must remain with the call. It should not be possible for both I2 and I3 to be a call. */ if (GET_CODE (i3) == CALL_INSN) |

