aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-10-07 11:20:13 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2006-10-07 11:20:13 +0000
commit73d1943acd41e5ee89a530d31aef4559a9cd76ed (patch)
treef33f67130bace69088688b13151fb01196fc4cf5 /gcc
parentf63645be077c892e096b60ea0d8fd13530714cde (diff)
downloadgcc-73d1943acd41e5ee89a530d31aef4559a9cd76ed.zip
gcc-73d1943acd41e5ee89a530d31aef4559a9cd76ed.tar.gz
gcc-73d1943acd41e5ee89a530d31aef4559a9cd76ed.tar.bz2
* sched-int.h: Fix comment typos.
From-SVN: r117532
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/sched-int.h4
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2d32703..16fadd2 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -2,6 +2,8 @@
* gimplify.c, sched-int.h: Fix comment typos.
+ * sched-int.h: Fix comment typos.
+
2006-10-06 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
* sched-int.h (IS_SPECULATION_CHECK_P, IS_SPECULATION_SIMPLE_CHECK_P):
diff --git a/gcc/sched-int.h b/gcc/sched-int.h
index 10c9a35..d2c6c62 100644
--- a/gcc/sched-int.h
+++ b/gcc/sched-int.h
@@ -363,12 +363,12 @@ extern regset *glat_start, *glat_end;
#define IS_SPECULATION_CHECK_P(INSN) (RECOVERY_BLOCK (INSN) != NULL)
/* INSN is a speculation check that will simply reexecute the speculatively
- scheduled instruction if the speculation fail. */
+ scheduled instruction if the speculation fails. */
#define IS_SPECULATION_SIMPLE_CHECK_P(INSN) \
(RECOVERY_BLOCK (INSN) == EXIT_BLOCK_PTR)
/* INSN is a speculation check that will branch to RECOVERY_BLOCK if the
- speculation fail. Insns in that block will reexecute the speculatively
+ speculation fails. Insns in that block will reexecute the speculatively
scheduled code and then will return immediately after INSN thus preserving
semantics of the program. */
#define IS_SPECULATION_BRANCHY_CHECK_P(INSN) \