diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-12 23:40:53 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-12 23:40:53 +0000 |
commit | aa40f56162c529feae5e13986bf6c46cf9b39245 (patch) | |
tree | f8425171fd5a2b92510be46813648f3e6a1d9f61 /gcc/recog.c | |
parent | fb0df687d6dae20c622958b0203f1d5390996ed2 (diff) | |
download | gcc-aa40f56162c529feae5e13986bf6c46cf9b39245.tar.gz |
* gcc.c: Fix comment formatting.
* gccspec.c: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
* genemit.c: Likewise.
* gengenrtl.c: Likewise.
* genrecog.c: Likewise.
* gensupport.c: Likewise.
* ggc-page.c: Likewise.
* global.c: Likewise.
* graph.c: Likewise.
* ifcvt.c: Likewise.
* integrate.c: Likewise.
* lcm.c: Likewise.
* libgcc2.c: Likewise.
* loop.c: Likewise.
* mbchar.c: Likewise.
* optabs.c: Likewise.
* predict.c: Likewise.
* prefix.c: Likewise.
* profile.c: Likewise.
* protoize.c: Likewise.
* real.c: Likewise.
* recog.c: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* reg-stack.c: Likewise.
* reload1.c: Likewise.
* resource.c: Likewise.
* rtlanal.c: Likewise.
* rtl.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44837 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/recog.c')
-rw-r--r-- | gcc/recog.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/recog.c b/gcc/recog.c index fc349ddaad2..283713bba5f 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -1065,7 +1065,7 @@ register_operand (op, mode) } /* If we have an ADDRESSOF, consider it valid since it will be - converted into something that will not be a MEM. */ + converted into something that will not be a MEM. */ if (GET_CODE (op) == ADDRESSOF) return 1; @@ -1984,11 +1984,11 @@ offsettable_address_p (strictp, mode, y) int mode_dependent_address_p (addr) - rtx addr ATTRIBUTE_UNUSED; /* Maybe used in GO_IF_MODE_DEPENDENT_ADDRESS. */ + rtx addr ATTRIBUTE_UNUSED; /* Maybe used in GO_IF_MODE_DEPENDENT_ADDRESS. */ { GO_IF_MODE_DEPENDENT_ADDRESS (addr, win); return 0; - /* Label `win' might (not) be used via GO_IF_MODE_DEPENDENT_ADDRESS. */ + /* Label `win' might (not) be used via GO_IF_MODE_DEPENDENT_ADDRESS. */ win: ATTRIBUTE_UNUSED_LABEL return 1; } @@ -2012,7 +2012,7 @@ mode_independent_operand (op, mode) addr = XEXP (op, 0); GO_IF_MODE_DEPENDENT_ADDRESS (addr, lose); return 1; - /* Label `lose' might (not) be used via GO_IF_MODE_DEPENDENT_ADDRESS. */ + /* Label `lose' might (not) be used via GO_IF_MODE_DEPENDENT_ADDRESS. */ lose: ATTRIBUTE_UNUSED_LABEL return 0; } @@ -2988,7 +2988,7 @@ peep2_find_free_register (from, to, class_str, mode, reg_set) return NULL_RTX; } -/* Perform the peephole2 optimization pass. */ +/* Perform the peephole2 optimization pass. */ void peephole2_optimize (dump_file) |