aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@acm.org>1999-04-28 03:53:54 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>1999-04-28 03:53:54 +0000
commit0d504ef06b4137a6e24507273bb11ad35f475f37 (patch)
treebf81dd20d7eafd1491deead8129bb8ed6a72b994
parent9dd2b100688cd52a0e6485f12646e2f2bc2ec04c (diff)
downloadgcc-0d504ef06b4137a6e24507273bb11ad35f475f37.zip
gcc-0d504ef06b4137a6e24507273bb11ad35f475f37.tar.gz
gcc-0d504ef06b4137a6e24507273bb11ad35f475f37.tar.bz2
cp-tree.h (build_component_addr): Remove prototype.
* cp-tree.h (build_component_addr): Remove prototype. * typeck.c (build_component_addr): Make static. Remove MSG argument. (build_component_addr): Remove MSG parameter, clean up comment. (build_x_function_call): Use cp_error. (build_unary_op): Adjust call of build_component_addr. From-SVN: r26686
-rw-r--r--gcc/cp/ChangeLog10
-rw-r--r--gcc/cp/cp-tree.h1
-rw-r--r--gcc/cp/typeck.c22
3 files changed, 19 insertions, 14 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index da0b4dd..b8b3e5d 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,13 @@
+1999-04-28 Nathan Sidwell <nathan@acm.org>
+
+ * cp-tree.h (build_component_addr): Remove prototype.
+ * typeck.c (build_component_addr): Make static. Remove MSG
+ argument.
+ (build_component_addr): Remove MSG parameter, clean up
+ comment.
+ (build_x_function_call): Use cp_error.
+ (build_unary_op): Adjust call of build_component_addr.
+
Wed Apr 28 11:42:22 1999 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* search.c (binfo_for_vtable): Initialize bfvi.var.
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h
index 9dccb4d..eb0411c 100644
--- a/gcc/cp/cp-tree.h
+++ b/gcc/cp/cp-tree.h
@@ -3441,7 +3441,6 @@ extern tree convert_arguments PROTO((tree, tree, tree, int));
extern tree build_x_binary_op PROTO((enum tree_code, tree, tree));
extern tree build_binary_op PROTO((enum tree_code, tree, tree));
extern tree build_binary_op_nodefault PROTO((enum tree_code, tree, tree, enum tree_code));
-extern tree build_component_addr PROTO((tree, tree, const char *));
extern tree build_x_unary_op PROTO((enum tree_code, tree));
extern tree build_unary_op PROTO((enum tree_code, tree, int));
extern tree unary_complex_lvalue PROTO((enum tree_code, tree));
diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c
index c74692c..c64d72c 100644
--- a/gcc/cp/typeck.c
+++ b/gcc/cp/typeck.c
@@ -55,6 +55,7 @@ static tree convert_sequence PROTO((tree, tree));
#endif
static tree lookup_anon_field PROTO((tree, tree));
static tree pointer_diff PROTO((tree, tree, tree));
+static tree build_component_addr PROTO((tree, tree));
static tree qualify_type PROTO((tree, tree));
static tree get_delta_difference PROTO((tree, tree, int));
static int comp_cv_target_types PROTO((tree, tree, int));
@@ -2687,8 +2688,7 @@ build_x_function_call (function, params, decl)
{
if (current_class_type == NULL_TREE)
{
- error ("object missing in call to method `%s'",
- IDENTIFIER_POINTER (function));
+ cp_error ("object missing in call to method `%D'", function);
return error_mark_node;
}
/* Yow: call from a static member function. */
@@ -4244,17 +4244,14 @@ pointer_diff (op0, op1, ptrtype)
}
/* Handle the case of taking the address of a COMPONENT_REF.
- Called by `build_unary_op' and `build_up_reference'.
+ Called by `build_unary_op'.
ARG is the COMPONENT_REF whose address we want.
- ARGTYPE is the pointer type that this address should have.
- MSG is an error message to print if this COMPONENT_REF is not
- addressable (such as a bitfield). */
+ ARGTYPE is the pointer type that this address should have. */
-tree
-build_component_addr (arg, argtype, msg)
+static tree
+build_component_addr (arg, argtype)
tree arg, argtype;
- const char *msg;
{
tree field = TREE_OPERAND (arg, 1);
tree basetype = decl_type_context (field);
@@ -4264,7 +4261,8 @@ build_component_addr (arg, argtype, msg)
if (DECL_C_BIT_FIELD (field))
{
- error (msg, IDENTIFIER_POINTER (DECL_NAME (field)));
+ cp_error ("attempt to take address of bit-field structure member `%D'",
+ field);
return error_mark_node;
}
@@ -4749,9 +4747,7 @@ build_unary_op (code, xarg, noconvert)
tree addr;
if (TREE_CODE (arg) == COMPONENT_REF)
- addr = build_component_addr
- (arg, argtype,
- "attempt to take address of bit-field structure member `%s'");
+ addr = build_component_addr (arg, argtype);
else
addr = build1 (ADDR_EXPR, argtype, arg);