diff options
author | Jeff Law <law@gcc.gnu.org> | 1997-11-02 14:19:36 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-11-02 14:19:36 -0700 |
commit | e9a25f70a0a7b82881b56cb3dfa7422b2968682a (patch) | |
tree | 46fe768360493f03f7282d07762e7b26c292aabd /gcc/rtl.c | |
parent | bb84e66919817020267815eed4304e543688e722 (diff) | |
download | gcc-e9a25f70a0a7b82881b56cb3dfa7422b2968682a.zip gcc-e9a25f70a0a7b82881b56cb3dfa7422b2968682a.tar.gz gcc-e9a25f70a0a7b82881b56cb3dfa7422b2968682a.tar.bz2 |
Update mainline egcs to gcc2 snapshot 971021.
From-SVN: r16278
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -284,6 +284,7 @@ copy_rtx (orig) case CC0: case SCRATCH: /* SCRATCH must be shared because they represent distinct values. */ + case ADDRESSOF: return orig; case CONST: @@ -299,6 +300,9 @@ copy_rtx (orig) the constant address may need to be reloaded. If the mem is shared, then reloading one copy of this mem will cause all copies to appear to have been reloaded. */ + + default: + break; } copy = rtx_alloc (code); @@ -385,6 +389,8 @@ copy_most_rtx (orig, may_share) case PC: case CC0: return orig; + default: + break; } copy = rtx_alloc (code); |