Commit d502f210 by Kaveh R. Ghazi Committed by Kaveh Ghazi

system.h: Poison PARAMS.

	* system.h: Poison PARAMS.

java:
	* java-tree.h: Don't use PARAMS().

From-SVN: r97816
parent 3a24bf5d
2005-04-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* system.h: Poison PARAMS.
2005-04-07 Richard Sandiford <rsandifo@redhat.com> 2005-04-07 Richard Sandiford <rsandifo@redhat.com>
* config/vax/vax.h (target_flags, MASK_UNIX_ASM, MASK_VAXC_ALIGNMENT) * config/vax/vax.h (target_flags, MASK_UNIX_ASM, MASK_VAXC_ALIGNMENT)
......
2005-04-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* java-tree.h: Don't use PARAMS().
2005-04-07 Per Bothner <per@bothner.com> 2005-04-07 Per Bothner <per@bothner.com>
* class.c (push_class): By default, suppress debug output. * class.c (push_class): By default, suppress debug output.
......
...@@ -1883,8 +1883,8 @@ enum ...@@ -1883,8 +1883,8 @@ enum
#define EXPR_WFL_LINECOL(NODE) ((NODE)->exp.locus) #define EXPR_WFL_LINECOL(NODE) ((NODE)->exp.locus)
#define EXPR_WFL_FILENAME(NODE) EXPR_FILENAME (NODE) #define EXPR_WFL_FILENAME(NODE) EXPR_FILENAME (NODE)
#define EXPR_WFL_LINENO(NODE) EXPR_LINENO (NODE) #define EXPR_WFL_LINENO(NODE) EXPR_LINENO (NODE)
extern tree build_expr_wfl PARAMS ((tree, source_location)); extern tree build_expr_wfl (tree, source_location);
extern tree expr_add_location PARAMS ((tree, source_location, bool)); extern tree expr_add_location (tree, source_location, bool);
#define build_unknown_wfl(NODE) build_expr_wfl(NODE, UNKNOWN_LOCATION) #define build_unknown_wfl(NODE) build_expr_wfl(NODE, UNKNOWN_LOCATION)
#else #else
#define EXPR_WFL_LINECOL(NODE) (EXPR_CHECK (NODE)->exp.complexity) #define EXPR_WFL_LINECOL(NODE) (EXPR_CHECK (NODE)->exp.complexity)
...@@ -1899,12 +1899,12 @@ extern tree expr_add_location PARAMS ((tree, source_location, bool)); ...@@ -1899,12 +1899,12 @@ extern tree expr_add_location PARAMS ((tree, source_location, bool));
#define EXPR_WFL_SET_LINECOL(NODE, LINE, COL) \ #define EXPR_WFL_SET_LINECOL(NODE, LINE, COL) \
(EXPR_WFL_LINECOL(NODE) = ((LINE) << 12) | ((COL) & 0xfff)) (EXPR_WFL_LINECOL(NODE) = ((LINE) << 12) | ((COL) & 0xfff))
extern tree build_expr_wfl PARAMS ((tree, const char *, int, int)); extern tree build_expr_wfl (tree, const char *, int, int);
#define build_unknown_wfl(NODE) build_expr_wfl(NODE, NULL, 0, 0) #define build_unknown_wfl(NODE) build_expr_wfl(NODE, NULL, 0, 0)
#endif #endif
extern void java_genericize PARAMS ((tree)); extern void java_genericize (tree);
extern int java_gimplify_expr PARAMS ((tree *, tree *, tree *)); extern int java_gimplify_expr (tree *, tree *, tree *);
extern tree extract_field_decl (tree); extern tree extract_field_decl (tree);
......
...@@ -675,13 +675,14 @@ extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN; ...@@ -675,13 +675,14 @@ extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN;
#undef ANSI_PROTOTYPES #undef ANSI_PROTOTYPES
#undef PTR_CONST #undef PTR_CONST
#undef LONG_DOUBLE #undef LONG_DOUBLE
#undef PARAMS
#undef VPARAMS #undef VPARAMS
#undef VA_OPEN #undef VA_OPEN
#undef VA_FIXEDARG #undef VA_FIXEDARG
#undef VA_CLOSE #undef VA_CLOSE
#undef VA_START #undef VA_START
#pragma GCC poison ANSI_PROTOTYPES PTR_CONST LONG_DOUBLE VPARAMS VA_OPEN \ #pragma GCC poison ANSI_PROTOTYPES PTR_CONST LONG_DOUBLE PARAMS VPARAMS \
VA_FIXEDARG VA_CLOSE VA_START VA_OPEN VA_FIXEDARG VA_CLOSE VA_START
#endif /* IN_GCC */ #endif /* IN_GCC */
/* Note: not all uses of the `index' token (e.g. variable names and /* Note: not all uses of the `index' token (e.g. variable names and
......
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