diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-10-07 11:20:13 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-10-07 11:20:13 +0000 |
commit | 73d1943acd41e5ee89a530d31aef4559a9cd76ed (patch) | |
tree | f33f67130bace69088688b13151fb01196fc4cf5 /gcc/sched-int.h | |
parent | f63645be077c892e096b60ea0d8fd13530714cde (diff) | |
download | gcc-73d1943acd41e5ee89a530d31aef4559a9cd76ed.zip gcc-73d1943acd41e5ee89a530d31aef4559a9cd76ed.tar.gz gcc-73d1943acd41e5ee89a530d31aef4559a9cd76ed.tar.bz2 |
* sched-int.h: Fix comment typos.
From-SVN: r117532
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r-- | gcc/sched-int.h | 4 |
1 files changed, 2 insertions, 2 deletions
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) \ |