diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-31 14:08:11 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-31 14:08:11 +0000 |
commit | 45981c0acc17902be218e5f141cd8fa6aba77790 (patch) | |
tree | 93c4c65de95841020f86611408200847171a559a /gcc/config/i386 | |
parent | a2e9361bf97b5aa96ea08b7bea0d619926a6b65a (diff) | |
download | gcc-45981c0acc17902be218e5f141cd8fa6aba77790.tar.gz |
2001-10-31 Kazu Hirata <kazu@hxi.com>
* builtins.def: Fix comment typos.
* config/alpha.c: Likewise.
* config/arm/arm.c: Likewise.
* config/avr/avr.h: Likewise.
* config/d30v/d30v.c: Likewise.
* config/d30v/d30v.h: Likewise.
* config/d30v/d30v.md: Likewise.
* config/dsp16xx/dsp16xx.c: Likewise.
* config/fr30/fr30.c: Likewise.
* config/fr30/fr30.md: Likewise.
* config/i386/i386.c: Likewise.
* config/i860/i860.c: Likewise.
* config/i960/i960.c: Likewise.
* config/ia64/ia64.c: Likewise.
* config/mips/mips.c: Likewise.
* config/pa/pa.c: Likewise.
* config/rs6000/rs6000.c: Likewise.
* config/s390/s390.c: Likewise.
* config/sparc/sparc.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46676 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386')
-rw-r--r-- | gcc/config/i386/i386.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 79aceb6c99f..9bd0ed7cba9 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -9008,7 +9008,7 @@ ix86_expand_movstr (dst, src, count_exp, align_exp) if (GET_CODE (align_exp) == CONST_INT) align = INTVAL (align_exp); - /* This simple hack avoids all inlining code and simplifies code bellow. */ + /* This simple hack avoids all inlining code and simplifies code below. */ if (!TARGET_ALIGN_STRINGOPS) align = 64; @@ -9229,7 +9229,7 @@ ix86_expand_clrstr (src, count_exp, align_exp) if (GET_CODE (align_exp) == CONST_INT) align = INTVAL (align_exp); - /* This simple hack avoids all inlining code and simplifies code bellow. */ + /* This simple hack avoids all inlining code and simplifies code below. */ if (!TARGET_ALIGN_STRINGOPS) align = 32; |