diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2007-02-04 04:11:52 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2007-02-04 04:11:52 +0000 |
commit | 85f650932f2e85b08877241f919939f8a3009ae4 (patch) | |
tree | ff5c96fd74ddbd915ef3a28100ba32c1e32246dc /gcc/config/mcore | |
parent | beeffe367a738b5cdb8add28f809e03a51a84790 (diff) | |
download | gcc-85f650932f2e85b08877241f919939f8a3009ae4.zip gcc-85f650932f2e85b08877241f919939f8a3009ae4.tar.gz gcc-85f650932f2e85b08877241f919939f8a3009ae4.tar.bz2 |
bitops.md, [...]: Follow spelling conventions.
* config/m32c/bitops.md, config/m32c/jump.md,
config/m32c/m32c.c, config/m32c/m32c.h, config/m32r/m32r.c,
config/m32r/m32r.h, config/m32r/m32r.md,
config/m32r/predicates.md, config/m68hc11/larith.asm,
config/m68hc11/m68hc11.c, config/m68hc11/m68hc11.h,
config/m68k/m68k.h, config/mcore/mcore.md, config/mips/4k.md,
config/mips/mips-protos.h, config/mips/mips.c,
config/mips/mips.h, config/mips/mips.md, config/mips/mips16.S,
config/mn10300/mn10300.h, config/mn10300/predicates.md,
config/mt/mt.c, config/mt/mt.h, config/mt/mt.md: Follow
spelling conventions.
From-SVN: r121565
Diffstat (limited to 'gcc/config/mcore')
-rw-r--r-- | gcc/config/mcore/mcore.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mcore/mcore.md b/gcc/config/mcore/mcore.md index c4af69e..5be6dc0 100644 --- a/gcc/config/mcore/mcore.md +++ b/gcc/config/mcore/mcore.md @@ -2657,7 +2657,7 @@ { if (INTVAL (operands[2]) == 8 && INTVAL (operands[3]) % 8 == 0) { - /* 8 bit field, aligned properly, use the xtrb[0123]+sext sequence. */ + /* 8-bit field, aligned properly, use the xtrb[0123]+sext sequence. */ /* not DONE, not FAIL, but let the RTL get generated.... */ } else if (TARGET_W_FIELD) @@ -2694,7 +2694,7 @@ { if (INTVAL (operands[2]) == 8 && INTVAL (operands[3]) % 8 == 0) { - /* 8 bit field, aligned properly, use the xtrb[0123] sequence. */ + /* 8-bit field, aligned properly, use the xtrb[0123] sequence. */ /* Let the template generate some RTL.... */ } else if (CONST_OK_FOR_K ((1 << INTVAL (operands[2])) - 1)) |