Commit 754d9299 by Joseph Myers Committed by Joseph Myers

predict.c, [...]: Fix spelling errors.

gcc:
	* predict.c, reg-stack.c: Fix spelling errors.

libstdc++-v3:
	* config/locale/moneypunct_members_gnu.cc,
	include/bits/locale_facets.h: Fix spelling errors.

From-SVN: r47278
parent 1fc61093
2001-11-23 Joseph S. Myers <jsm28@cam.ac.uk>
* predict.c, reg-stack.c: Fix spelling errors.
2001-10-09 Andrew Haley <aph@redhat.com> 2001-10-09 Andrew Haley <aph@redhat.com>
* calls.c (check_sibcall_argument_overlap): Use slot_offset for * calls.c (check_sibcall_argument_overlap): Use slot_offset for
......
...@@ -611,7 +611,7 @@ typedef struct block_info_def ...@@ -611,7 +611,7 @@ typedef struct block_info_def
int tovisit:1; int tovisit:1;
/* Number of predecessors we need to visit first. */ /* Number of predecessors we need to visit first. */
int npredecesors; int npredecessors;
} *block_info; } *block_info;
/* Similar information for edges. */ /* Similar information for edges. */
...@@ -659,7 +659,7 @@ propagate_freq (head) ...@@ -659,7 +659,7 @@ propagate_freq (head)
fprintf (rtl_dump_file, fprintf (rtl_dump_file,
"Irreducible region hit, ignoring edge to %i->%i\n", "Irreducible region hit, ignoring edge to %i->%i\n",
e->src->index, bb->index); e->src->index, bb->index);
BLOCK_INFO (bb)->npredecesors = count; BLOCK_INFO (bb)->npredecessors = count;
} }
} }
...@@ -706,10 +706,10 @@ propagate_freq (head) ...@@ -706,10 +706,10 @@ propagate_freq (head)
/* Propagate to successor blocks. */ /* Propagate to successor blocks. */
for (e = bb->succ; e; e = e->succ_next) for (e = bb->succ; e; e = e->succ_next)
if (!(e->flags & EDGE_DFS_BACK) if (!(e->flags & EDGE_DFS_BACK)
&& BLOCK_INFO (e->dest)->npredecesors) && BLOCK_INFO (e->dest)->npredecessors)
{ {
BLOCK_INFO (e->dest)->npredecesors--; BLOCK_INFO (e->dest)->npredecessors--;
if (!BLOCK_INFO (e->dest)->npredecesors) if (!BLOCK_INFO (e->dest)->npredecessors)
{ {
if (!nextbb) if (!nextbb)
nextbb = e->dest; nextbb = e->dest;
......
...@@ -197,7 +197,7 @@ typedef struct block_info_def ...@@ -197,7 +197,7 @@ typedef struct block_info_def
struct stack_def stack_out; /* Output stack configuration. */ struct stack_def stack_out; /* Output stack configuration. */
HARD_REG_SET out_reg_set; /* Stack regs live on output. */ HARD_REG_SET out_reg_set; /* Stack regs live on output. */
int done; /* True if block already converted. */ int done; /* True if block already converted. */
int predecesors; /* Number of predecessors that needs int predecessors; /* Number of predecessors that needs
to be visited. */ to be visited. */
} *block_info; } *block_info;
...@@ -458,7 +458,7 @@ reg_to_stack (first, file) ...@@ -458,7 +458,7 @@ reg_to_stack (first, file)
for (e = bb->pred; e; e=e->pred_next) for (e = bb->pred; e; e=e->pred_next)
if (!(e->flags & EDGE_DFS_BACK) if (!(e->flags & EDGE_DFS_BACK)
&& e->src != ENTRY_BLOCK_PTR) && e->src != ENTRY_BLOCK_PTR)
BLOCK_INFO (bb)->predecesors++; BLOCK_INFO (bb)->predecessors++;
} }
/* Create the replacement registers up front. */ /* Create the replacement registers up front. */
...@@ -2797,8 +2797,8 @@ convert_regs_2 (file, block) ...@@ -2797,8 +2797,8 @@ convert_regs_2 (file, block)
for (e = block->succ; e ; e = e->succ_next) for (e = block->succ; e ; e = e->succ_next)
if (! (e->flags & EDGE_DFS_BACK)) if (! (e->flags & EDGE_DFS_BACK))
{ {
BLOCK_INFO (e->dest)->predecesors--; BLOCK_INFO (e->dest)->predecessors--;
if (!BLOCK_INFO (e->dest)->predecesors) if (!BLOCK_INFO (e->dest)->predecessors)
*sp++ = e->dest; *sp++ = e->dest;
} }
} }
......
2001-11-23 Joseph S. Myers <jsm28@cam.ac.uk>
* config/locale/moneypunct_members_gnu.cc,
include/bits/locale_facets.h: Fix spelling errors.
2001-11-22 Stephen M. Webb <stephen@bregmasoft.com> 2001-11-22 Stephen M. Webb <stephen@bregmasoft.com>
* testsuite/23_containers/list_capacity.cc: New file. * testsuite/23_containers/list_capacity.cc: New file.
......
...@@ -40,14 +40,14 @@ namespace std ...@@ -40,14 +40,14 @@ namespace std
// Construct and return valid pattern consisting of some combination of: // Construct and return valid pattern consisting of some combination of:
// space none symbol sign value // space none symbol sign value
money_base::pattern money_base::pattern
money_base::_S_construct_pattern(char __preceeds, char __space, char __posn) money_base::_S_construct_pattern(char __precedes, char __space, char __posn)
{ {
pattern __ret; pattern __ret;
// This insanely complicated routine attempts to construct a valid // This insanely complicated routine attempts to construct a valid
// pattern for use with monyepunct. A couple of invariants: // pattern for use with monyepunct. A couple of invariants:
// if (__preceeds) symbol -> value // if (__precedes) symbol -> value
// else value -> symbol // else value -> symbol
// if (__space) space // if (__space) space
...@@ -65,7 +65,7 @@ namespace std ...@@ -65,7 +65,7 @@ namespace std
if (__space) if (__space)
{ {
// Pattern starts with sign. // Pattern starts with sign.
if (__preceeds) if (__precedes)
{ {
__ret.field[1] = symbol; __ret.field[1] = symbol;
__ret.field[2] = space; __ret.field[2] = space;
...@@ -82,7 +82,7 @@ namespace std ...@@ -82,7 +82,7 @@ namespace std
else else
{ {
// Pattern starts with sign and ends with none. // Pattern starts with sign and ends with none.
if (__preceeds) if (__precedes)
{ {
__ret.field[1] = symbol; __ret.field[1] = symbol;
__ret.field[2] = value; __ret.field[2] = value;
...@@ -101,7 +101,7 @@ namespace std ...@@ -101,7 +101,7 @@ namespace std
if (__space) if (__space)
{ {
// Pattern either ends with sign. // Pattern either ends with sign.
if (__preceeds) if (__precedes)
{ {
__ret.field[0] = symbol; __ret.field[0] = symbol;
__ret.field[1] = space; __ret.field[1] = space;
...@@ -118,7 +118,7 @@ namespace std ...@@ -118,7 +118,7 @@ namespace std
else else
{ {
// Pattern ends with sign then none. // Pattern ends with sign then none.
if (__preceeds) if (__precedes)
{ {
__ret.field[0] = symbol; __ret.field[0] = symbol;
__ret.field[1] = value; __ret.field[1] = value;
...@@ -137,7 +137,7 @@ namespace std ...@@ -137,7 +137,7 @@ namespace std
if (__space) if (__space)
{ {
// Have space. // Have space.
if (__preceeds) if (__precedes)
{ {
__ret.field[0] = sign; __ret.field[0] = sign;
__ret.field[1] = symbol; __ret.field[1] = symbol;
...@@ -155,7 +155,7 @@ namespace std ...@@ -155,7 +155,7 @@ namespace std
else else
{ {
// Have none. // Have none.
if (__preceeds) if (__precedes)
{ {
__ret.field[0] = sign; __ret.field[0] = sign;
__ret.field[1] = symbol; __ret.field[1] = symbol;
...@@ -175,7 +175,7 @@ namespace std ...@@ -175,7 +175,7 @@ namespace std
if (__space) if (__space)
{ {
// Have space. // Have space.
if (__preceeds) if (__precedes)
{ {
__ret.field[0] = symbol; __ret.field[0] = symbol;
__ret.field[1] = sign; __ret.field[1] = sign;
...@@ -193,7 +193,7 @@ namespace std ...@@ -193,7 +193,7 @@ namespace std
else else
{ {
// Have none. // Have none.
if (__preceeds) if (__precedes)
{ {
__ret.field[0] = symbol; __ret.field[0] = symbol;
__ret.field[1] = sign; __ret.field[1] = sign;
...@@ -243,16 +243,16 @@ namespace std ...@@ -243,16 +243,16 @@ namespace std
// _Intl == true // _Intl == true
_M_curr_symbol = __nl_langinfo_l(__INT_CURR_SYMBOL, __cloc); _M_curr_symbol = __nl_langinfo_l(__INT_CURR_SYMBOL, __cloc);
_M_frac_digits = *(__nl_langinfo_l(__INT_FRAC_DIGITS, __cloc)); _M_frac_digits = *(__nl_langinfo_l(__INT_FRAC_DIGITS, __cloc));
char __ppreceeds = *(__nl_langinfo_l(__INT_P_CS_PRECEDES, __cloc)); char __pprecedes = *(__nl_langinfo_l(__INT_P_CS_PRECEDES, __cloc));
char __pspace = *(__nl_langinfo_l(__INT_P_SEP_BY_SPACE, __cloc)); char __pspace = *(__nl_langinfo_l(__INT_P_SEP_BY_SPACE, __cloc));
char __pposn = *(__nl_langinfo_l(__INT_P_SIGN_POSN, __cloc)); char __pposn = *(__nl_langinfo_l(__INT_P_SIGN_POSN, __cloc));
_M_pos_format = _S_construct_pattern(__ppreceeds, __pspace, __pposn); _M_pos_format = _S_construct_pattern(__pprecedes, __pspace, __pposn);
char __npreceeds = *(__nl_langinfo_l(__INT_N_CS_PRECEDES, __cloc)); char __nprecedes = *(__nl_langinfo_l(__INT_N_CS_PRECEDES, __cloc));
char __nspace = *(__nl_langinfo_l(__INT_N_SEP_BY_SPACE, __cloc)); char __nspace = *(__nl_langinfo_l(__INT_N_SEP_BY_SPACE, __cloc));
char __nposn = *(__nl_langinfo_l(__INT_N_SIGN_POSN, __cloc)); char __nposn = *(__nl_langinfo_l(__INT_N_SIGN_POSN, __cloc));
if (!__nposn) if (!__nposn)
_M_negative_sign = "()"; _M_negative_sign = "()";
_M_neg_format = _S_construct_pattern(__npreceeds, __nspace, __nposn); _M_neg_format = _S_construct_pattern(__nprecedes, __nspace, __nposn);
} }
} }
...@@ -285,16 +285,16 @@ namespace std ...@@ -285,16 +285,16 @@ namespace std
// _Intl == false // _Intl == false
_M_curr_symbol = __nl_langinfo_l(__CURRENCY_SYMBOL, __cloc); _M_curr_symbol = __nl_langinfo_l(__CURRENCY_SYMBOL, __cloc);
_M_frac_digits = *(__nl_langinfo_l(__FRAC_DIGITS, __cloc)); _M_frac_digits = *(__nl_langinfo_l(__FRAC_DIGITS, __cloc));
char __ppreceeds = *(__nl_langinfo_l(__P_CS_PRECEDES, __cloc)); char __pprecedes = *(__nl_langinfo_l(__P_CS_PRECEDES, __cloc));
char __pspace = *(__nl_langinfo_l(__P_SEP_BY_SPACE, __cloc)); char __pspace = *(__nl_langinfo_l(__P_SEP_BY_SPACE, __cloc));
char __pposn = *(__nl_langinfo_l(__P_SIGN_POSN, __cloc)); char __pposn = *(__nl_langinfo_l(__P_SIGN_POSN, __cloc));
_M_pos_format = _S_construct_pattern(__ppreceeds, __pspace, __pposn); _M_pos_format = _S_construct_pattern(__pprecedes, __pspace, __pposn);
char __npreceeds = *(__nl_langinfo_l(__N_CS_PRECEDES, __cloc)); char __nprecedes = *(__nl_langinfo_l(__N_CS_PRECEDES, __cloc));
char __nspace = *(__nl_langinfo_l(__N_SEP_BY_SPACE, __cloc)); char __nspace = *(__nl_langinfo_l(__N_SEP_BY_SPACE, __cloc));
char __nposn = *(__nl_langinfo_l(__N_SIGN_POSN, __cloc)); char __nposn = *(__nl_langinfo_l(__N_SIGN_POSN, __cloc));
if (!__nposn) if (!__nposn)
_M_negative_sign = "()"; _M_negative_sign = "()";
_M_neg_format = _S_construct_pattern(__npreceeds, __nspace, __nposn); _M_neg_format = _S_construct_pattern(__nprecedes, __nspace, __nposn);
} }
} }
...@@ -365,16 +365,16 @@ namespace std ...@@ -365,16 +365,16 @@ namespace std
_M_curr_symbol = string_type(); _M_curr_symbol = string_type();
_M_frac_digits = *(__nl_langinfo_l(__INT_FRAC_DIGITS, __cloc)); _M_frac_digits = *(__nl_langinfo_l(__INT_FRAC_DIGITS, __cloc));
char __ppreceeds = *(__nl_langinfo_l(__INT_P_CS_PRECEDES, __cloc)); char __pprecedes = *(__nl_langinfo_l(__INT_P_CS_PRECEDES, __cloc));
char __pspace = *(__nl_langinfo_l(__INT_P_SEP_BY_SPACE, __cloc)); char __pspace = *(__nl_langinfo_l(__INT_P_SEP_BY_SPACE, __cloc));
char __pposn = *(__nl_langinfo_l(__INT_P_SIGN_POSN, __cloc)); char __pposn = *(__nl_langinfo_l(__INT_P_SIGN_POSN, __cloc));
_M_pos_format = _S_construct_pattern(__ppreceeds, __pspace, __pposn); _M_pos_format = _S_construct_pattern(__pprecedes, __pspace, __pposn);
char __npreceeds = *(__nl_langinfo_l(__INT_N_CS_PRECEDES, __cloc)); char __nprecedes = *(__nl_langinfo_l(__INT_N_CS_PRECEDES, __cloc));
char __nspace = *(__nl_langinfo_l(__INT_N_SEP_BY_SPACE, __cloc)); char __nspace = *(__nl_langinfo_l(__INT_N_SEP_BY_SPACE, __cloc));
char __nposn = *(__nl_langinfo_l(__INT_N_SIGN_POSN, __cloc)); char __nposn = *(__nl_langinfo_l(__INT_N_SIGN_POSN, __cloc));
if (!__nposn) if (!__nposn)
_M_negative_sign = L"()"; _M_negative_sign = L"()";
_M_neg_format = _S_construct_pattern(__npreceeds, __nspace, __nposn); _M_neg_format = _S_construct_pattern(__nprecedes, __nspace, __nposn);
} }
} }
...@@ -444,16 +444,16 @@ namespace std ...@@ -444,16 +444,16 @@ namespace std
_M_curr_symbol = string_type(); _M_curr_symbol = string_type();
_M_frac_digits = *(__nl_langinfo_l(__FRAC_DIGITS, __cloc)); _M_frac_digits = *(__nl_langinfo_l(__FRAC_DIGITS, __cloc));
char __ppreceeds = *(__nl_langinfo_l(__P_CS_PRECEDES, __cloc)); char __pprecedes = *(__nl_langinfo_l(__P_CS_PRECEDES, __cloc));
char __pspace = *(__nl_langinfo_l(__P_SEP_BY_SPACE, __cloc)); char __pspace = *(__nl_langinfo_l(__P_SEP_BY_SPACE, __cloc));
char __pposn = *(__nl_langinfo_l(__P_SIGN_POSN, __cloc)); char __pposn = *(__nl_langinfo_l(__P_SIGN_POSN, __cloc));
_M_pos_format = _S_construct_pattern(__ppreceeds, __pspace, __pposn); _M_pos_format = _S_construct_pattern(__pprecedes, __pspace, __pposn);
char __npreceeds = *(__nl_langinfo_l(__N_CS_PRECEDES, __cloc)); char __nprecedes = *(__nl_langinfo_l(__N_CS_PRECEDES, __cloc));
char __nspace = *(__nl_langinfo_l(__N_SEP_BY_SPACE, __cloc)); char __nspace = *(__nl_langinfo_l(__N_SEP_BY_SPACE, __cloc));
char __nposn = *(__nl_langinfo_l(__N_SIGN_POSN, __cloc)); char __nposn = *(__nl_langinfo_l(__N_SIGN_POSN, __cloc));
if (!__nposn) if (!__nposn)
_M_negative_sign = L"()"; _M_negative_sign = L"()";
_M_neg_format = _S_construct_pattern(__npreceeds, __nspace, __nposn); _M_neg_format = _S_construct_pattern(__nprecedes, __nspace, __nposn);
} }
} }
#endif #endif
......
...@@ -1476,7 +1476,7 @@ namespace std ...@@ -1476,7 +1476,7 @@ namespace std
// Construct and return valid pattern consisting of some combination of: // Construct and return valid pattern consisting of some combination of:
// space none symbol sign value // space none symbol sign value
static pattern static pattern
_S_construct_pattern(char __preceeds, char __space, char __posn); _S_construct_pattern(char __precedes, char __space, char __posn);
}; };
template<typename _CharT, bool _Intl> template<typename _CharT, bool _Intl>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment