From 8e3eaeaffe8add93338478044b42b881ade28608 Mon Sep 17 00:00:00 2001 From: kazu Date: Sat, 7 Oct 2006 11:20:13 +0000 Subject: [PATCH] * sched-int.h: Fix comment typos. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@117532 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 2 ++ gcc/sched-int.h | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2d32703782f..16fadd2c5c2 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 * 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 10c9a35e5aa..d2c6c62c969 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) \ -- 2.11.4.GIT