From 5c7fdaebb319fac36a19ac9f67534883ad66b683 Mon Sep 17 00:00:00 2001 From: Kenneth Zadeck Date: Sat, 17 May 2008 21:03:29 +0000 Subject: [PATCH] rtl.texi (RTL_CONST_CALL_P, [...]): Fixed typos. 2008-05-17 Kenneth Zadeck * doc/rtl.texi (RTL_CONST_CALL_P, RTL_PURE_CALL_P): Fixed typos. * df-problems.c (simulation routines): Fixed block comment to properly say how to add forwards scanning functions. From-SVN: r135478 --- gcc/df-problems.c | 8 ++++---- gcc/doc/rtl.texi | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gcc/df-problems.c b/gcc/df-problems.c index 682cca857a7..b1e60b3ab71 100644 --- a/gcc/df-problems.c +++ b/gcc/df-problems.c @@ -3767,10 +3767,10 @@ df_simulate_fixup_sets (basic_block bb, bitmap live) df_simulate_artificial_refs_at_top can be called to get a new value of the sets at the top of the block (this is rarely used). - It would be trivial to define a similar set of functions that work - in the forwards direction. The only changes would be to process - the uses before the defs and properly rename the functions. This - has so far not been necessary. + It would be not be difficult to define a similar set of functions + that work in the forwards direction. In that case the functions + would ignore the use sets and look for the REG_DEAD and REG_UNUSED + notes. ----------------------------------------------------------------------------*/ /* Apply the artificial uses and defs at the end of BB in a backwards diff --git a/gcc/doc/rtl.texi b/gcc/doc/rtl.texi index 96de36503fa..3191fc8e6a9 100644 --- a/gcc/doc/rtl.texi +++ b/gcc/doc/rtl.texi @@ -562,7 +562,7 @@ Stored in the @code{unchanging} field and printed as @samp{/u}. @findex RTL_CONST_CALL_P @cindex @code{call_insn} and @samp{/u} @cindex @code{unchanging}, in @code{call_insn} -@item RTLCONST_OR_PURE_CALL_P (@var{x}) +@item RTL_CONST_CALL_P (@var{x}) In a @code{call_insn} indicates that the insn represents a call to a const function. Stored in the @code{unchanging} field and printed as @samp{/u}. @@ -570,7 +570,7 @@ const function. Stored in the @code{unchanging} field and printed as @findex RTL_PURE_CALL_P @cindex @code{call_insn} and @samp{/i} @cindex @code{return_val}, in @code{call_insn} -@item RTLCONST_OR_PURE_CALL_P (@var{x}) +@item RTL_PURE_CALL_P (@var{x}) In a @code{call_insn} indicates that the insn represents a call to a pure function. Stored in the @code{return_val} field and printed as @samp{/i}. -- 2.30.2