diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-04-21 14:51:42 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-04-21 14:51:42 -0700 |
commit | 0b0ee36cd91aa7d15014b077b786e072aa848cbe (patch) | |
tree | b34106676948210ac236d6b70fd48142de5ab70f | |
parent | a7095f97f346e32c6a064f8a770f4054616f3c9f (diff) | |
download | gcc-0b0ee36cd91aa7d15014b077b786e072aa848cbe.zip gcc-0b0ee36cd91aa7d15014b077b786e072aa848cbe.tar.gz gcc-0b0ee36cd91aa7d15014b077b786e072aa848cbe.tar.bz2 |
(cse_process_notes): Handle SUBREG like ZERO_EXTEND.
From-SVN: r11864
-rw-r--r-- | gcc/cse.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -7697,6 +7697,7 @@ cse_process_notes (x, object) case SIGN_EXTEND: case ZERO_EXTEND: + case SUBREG: { rtx new = cse_process_notes (XEXP (x, 0), object); /* We don't substitute VOIDmode constants into these rtx, |