mirror of git://gcc.gnu.org/git/gcc.git
parent
f63645be07
commit
73d1943acd
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
* gimplify.c, sched-int.h: Fix comment typos.
|
* gimplify.c, sched-int.h: Fix comment typos.
|
||||||
|
|
||||||
|
* sched-int.h: Fix comment typos.
|
||||||
|
|
||||||
2006-10-06 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
|
2006-10-06 Maxim Kuvyrkov <mkuvyrkov@ispras.ru>
|
||||||
|
|
||||||
* sched-int.h (IS_SPECULATION_CHECK_P, IS_SPECULATION_SIMPLE_CHECK_P):
|
* sched-int.h (IS_SPECULATION_CHECK_P, IS_SPECULATION_SIMPLE_CHECK_P):
|
||||||
|
|
|
||||||
|
|
@ -363,12 +363,12 @@ extern regset *glat_start, *glat_end;
|
||||||
#define IS_SPECULATION_CHECK_P(INSN) (RECOVERY_BLOCK (INSN) != NULL)
|
#define IS_SPECULATION_CHECK_P(INSN) (RECOVERY_BLOCK (INSN) != NULL)
|
||||||
|
|
||||||
/* INSN is a speculation check that will simply reexecute the speculatively
|
/* 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) \
|
#define IS_SPECULATION_SIMPLE_CHECK_P(INSN) \
|
||||||
(RECOVERY_BLOCK (INSN) == EXIT_BLOCK_PTR)
|
(RECOVERY_BLOCK (INSN) == EXIT_BLOCK_PTR)
|
||||||
|
|
||||||
/* INSN is a speculation check that will branch to RECOVERY_BLOCK if the
|
/* 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
|
scheduled code and then will return immediately after INSN thus preserving
|
||||||
semantics of the program. */
|
semantics of the program. */
|
||||||
#define IS_SPECULATION_BRANCHY_CHECK_P(INSN) \
|
#define IS_SPECULATION_BRANCHY_CHECK_P(INSN) \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue