builtin-attrs.def: Fix comment formatting.
* builtin-attrs.def: Fix comment formatting. * c-pretty-print.c: Likewise. * diagnostic.h: Likewise. * langhooks.h: Likewise. * recog.c: Likewise. * simplify-rtx.c: Likewise. * tree.def: Likewise. From-SVN: r70676
This commit is contained in:
parent
8a4a2253e3
commit
2b72593e40
@ -1,3 +1,13 @@
|
||||
2003-08-22 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* builtin-attrs.def: Fix comment formatting.
|
||||
* c-pretty-print.c: Likewise.
|
||||
* diagnostic.h: Likewise.
|
||||
* langhooks.h: Likewise.
|
||||
* recog.c: Likewise.
|
||||
* simplify-rtx.c: Likewise.
|
||||
* tree.def: Likewise.
|
||||
|
||||
2003-08-22 Bernardo Innocenti <bernie@develer.com>
|
||||
|
||||
* config/m68k/m68k-protos.h: Convert to ISO C90.
|
||||
|
@ -104,22 +104,22 @@ DEF_ATTR_TREE_LIST (ATTR_NOTHROW_NONNULL_2, ATTR_NONNULL, ATTR_LIST_2, \
|
||||
ATTR_NOTHROW_LIST)
|
||||
DEF_ATTR_TREE_LIST (ATTR_NOTHROW_NONNULL_3, ATTR_NONNULL, ATTR_LIST_3, \
|
||||
ATTR_NOTHROW_LIST)
|
||||
/* Nothrow functions whose first and second parameters are nonnull pointers. */
|
||||
/* Nothrow functions whose first and second parameters are nonnull pointers. */
|
||||
DEF_ATTR_TREE_LIST (ATTR_NOTHROW_NONNULL_1_2, ATTR_NONNULL, ATTR_LIST_2, \
|
||||
ATTR_NOTHROW_NONNULL_1)
|
||||
/* Nothrow functions whose first and fourth parameters are nonnull pointers. */
|
||||
/* Nothrow functions whose first and fourth parameters are nonnull pointers. */
|
||||
DEF_ATTR_TREE_LIST (ATTR_NOTHROW_NONNULL_1_4, ATTR_NONNULL, ATTR_LIST_4, \
|
||||
ATTR_NOTHROW_NONNULL_1)
|
||||
/* Nothrow const functions whose first parameter is a nonnull pointer. */
|
||||
/* Nothrow const functions whose first parameter is a nonnull pointer. */
|
||||
DEF_ATTR_TREE_LIST (ATTR_CONST_NOTHROW_NONNULL_1, ATTR_CONST, ATTR_NULL, \
|
||||
ATTR_NOTHROW_NONNULL_1)
|
||||
/* Nothrow pure functions whose first parameter is a nonnull pointer. */
|
||||
/* Nothrow pure functions whose first parameter is a nonnull pointer. */
|
||||
DEF_ATTR_TREE_LIST (ATTR_PURE_NOTHROW_NONNULL_1, ATTR_PURE, ATTR_NULL, \
|
||||
ATTR_NOTHROW_NONNULL_1)
|
||||
/* Nothrow pure functions whose first and second parameters are nonnull pointers. */
|
||||
/* Nothrow pure functions whose first and second parameters are nonnull pointers. */
|
||||
DEF_ATTR_TREE_LIST (ATTR_PURE_NOTHROW_NONNULL_1_2, ATTR_PURE, ATTR_NULL, \
|
||||
ATTR_NOTHROW_NONNULL_1_2)
|
||||
/* Nothrow malloc functions whose first parameter is a nonnull pointer. */
|
||||
/* Nothrow malloc functions whose first parameter is a nonnull pointer. */
|
||||
DEF_ATTR_TREE_LIST (ATTR_MALLOC_NOTHROW_NONNULL_1, ATTR_MALLOC, ATTR_NULL, \
|
||||
ATTR_NOTHROW_NONNULL_1)
|
||||
|
||||
|
@ -1142,7 +1142,7 @@ pp_c_postfix_expression (c_pretty_printer ppi, tree e)
|
||||
pp_c_id_expression (ppi, TREE_OPERAND (e, 0));
|
||||
break;
|
||||
}
|
||||
/* else fall through. */
|
||||
/* else fall through. */
|
||||
|
||||
default:
|
||||
pp_primary_expression (ppi, e);
|
||||
|
@ -57,7 +57,7 @@ typedef diagnostic_starter_fn diagnostic_finalizer_fn;
|
||||
the context of a diagnostic message. */
|
||||
struct diagnostic_context
|
||||
{
|
||||
/* Where most of the diagnostic formatting work is done. */
|
||||
/* Where most of the diagnostic formatting work is done. */
|
||||
pretty_printer *printer;
|
||||
|
||||
/* The number of times we have issued diagnostics. */
|
||||
|
@ -362,7 +362,7 @@ struct lang_hooks
|
||||
tree (*expr_size) (tree);
|
||||
|
||||
/* Called from uninitialized_vars_warning to find out if a variable is
|
||||
uninitialized based on DECL_INITIAL. */
|
||||
uninitialized based on DECL_INITIAL. */
|
||||
bool (*decl_uninit) (tree);
|
||||
|
||||
/* Pointers to machine-independent attribute tables, for front ends
|
||||
|
@ -1949,7 +1949,7 @@ offsettable_address_p (int strictp, enum machine_mode mode, rtx y)
|
||||
because the amount of the increment depends on the mode. */
|
||||
|
||||
int
|
||||
mode_dependent_address_p (rtx addr ATTRIBUTE_UNUSED /* Maybe used in GO_IF_MODE_DEPENDENT_ADDRESS. */)
|
||||
mode_dependent_address_p (rtx addr ATTRIBUTE_UNUSED /* Maybe used in GO_IF_MODE_DEPENDENT_ADDRESS. */)
|
||||
{
|
||||
GO_IF_MODE_DEPENDENT_ADDRESS (addr, win);
|
||||
return 0;
|
||||
|
@ -3163,7 +3163,7 @@ simplify_rtx (rtx x)
|
||||
if (swap_commutative_operands_p (XEXP (x, 0), XEXP (x, 1)))
|
||||
return simplify_gen_binary (code, mode, XEXP (x, 1), XEXP (x, 0));
|
||||
|
||||
/* Fall through.... */
|
||||
/* Fall through.... */
|
||||
|
||||
case '2':
|
||||
return simplify_binary_operation (code, mode, XEXP (x, 0), XEXP (x, 1));
|
||||
|
@ -274,7 +274,7 @@ DEFTREECODE (COMPLEX_CST, "complex_cst", 'c', 0)
|
||||
/* Contents are in TREE_VECTOR_CST_ELTS field. */
|
||||
DEFTREECODE (VECTOR_CST, "vector_cst", 'c', 0)
|
||||
|
||||
/* Contents are TREE_STRING_LENGTH and TREE_STRING_POINTER fields. */
|
||||
/* Contents are TREE_STRING_LENGTH and TREE_STRING_POINTER fields. */
|
||||
DEFTREECODE (STRING_CST, "string_cst", 'c', 0)
|
||||
|
||||
/* Declarations. All references to names are represented as ..._DECL
|
||||
|
Loading…
Reference in New Issue
Block a user