diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2000-11-13 21:22:10 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2000-11-13 21:22:10 +0000 |
commit | d9068c61428f89ce1db4bae6f5adb6acbd8b5b6b (patch) | |
tree | fd2583d1bff6b5fbb21a491a9da567cce4465262 /gcc/local-alloc.c | |
parent | 51d61f8686efee2132bf91c5a89993c1cbf103c7 (diff) | |
download | gcc-d9068c61428f89ce1db4bae6f5adb6acbd8b5b6b.zip gcc-d9068c61428f89ce1db4bae6f5adb6acbd8b5b6b.tar.gz gcc-d9068c61428f89ce1db4bae6f5adb6acbd8b5b6b.tar.bz2 |
c-lex.c (cb_leave_file): Harmonize conditions and order of statements to those of process_directive for...
* c-lex.c (cb_leave_file): Harmonize conditions and order of
statements to those of process_directive for (action == act_pop).
* collect2.c (main): Pass on -B options from COLLECT_GCC_OPTIONS.
* local-alloc.c (equiv_init_movable_p): References to CC0 are not
movable.
From-SVN: r37438
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 2315338..ac2183e 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -589,6 +589,7 @@ equiv_init_movable_p (x, regno) case SET: return equiv_init_movable_p (SET_SRC (x), regno); + case CC0: case CLOBBER: return 0; |