diff options
author | Alexandre Oliva <oliva@lsd.ic.unicamp.br> | 2000-03-07 03:43:03 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2000-03-07 03:43:03 +0000 |
commit | 141b58108437ef9f1984b78f194933f5b68bab22 (patch) | |
tree | e02a34f1595fcab926fdfe8cfd10d32a7e0982f2 /gcc/gcse.c | |
parent | 1c30539d66d63b533e9782e7b245e5579cacda47 (diff) | |
download | gcc-141b58108437ef9f1984b78f194933f5b68bab22.zip gcc-141b58108437ef9f1984b78f194933f5b68bab22.tar.gz gcc-141b58108437ef9f1984b78f194933f5b68bab22.tar.bz2 |
gcse.c (compute_can_copy): Adjust if/else blocks from rth's patch from 2000-01-28.
* gcse.c (compute_can_copy): Adjust if/else blocks from rth's
patch from 2000-01-28.
From-SVN: r32375
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -837,9 +837,9 @@ compute_can_copy () if (recog (PATTERN (insn), insn, NULL_PTR) >= 0) can_copy_p[i] = 1; #endif - else - can_copy_p[i] = 1; } + else + can_copy_p[i] = 1; end_sequence (); |