summaryrefslogtreecommitdiff
path: root/gcc/c-tree.h
diff options
context:
space:
mode:
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-01 09:00:45 +0000
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-01 09:00:45 +0000
commit92ddaf90ed78dc8b69ed78192f8c0f1baed05a69 (patch)
tree1ab2a373f3e8ac65651f191c54f58b1023039ddc /gcc/c-tree.h
parent505869300cb21a8c013fde88a0e3ca42ab531dba (diff)
downloadgcc-92ddaf90ed78dc8b69ed78192f8c0f1baed05a69.tar.gz
* c-tree.h (define_label): Replace filename and lineno arguments
with a location_t. * c-decl.c (poplevel): Adjust define_label call. (pop_label_level): Likewise. (define_label): Replace filename and lineno arguments with a location_t. (store_parm_decls): Use DECL_SOURCE_LOCATION. * c-parse.in (label): Adjust define_label call. * cp/cp-tree.h (define_label): Replace filename and lineno arguments with a location_t. * cp/decl.c (pop_label): Adjust define_label call. (define_label): Replace filename and lineno arguments with a location_t. * cp/semantics.c (finish_label): Adjust define_label call. * java/decl.c (poplevel): Adjust define_label call. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68766 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-tree.h')
-rw-r--r--gcc/c-tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h
index bd3e22eb48c..f32eb1196f1 100644
--- a/gcc/c-tree.h
+++ b/gcc/c-tree.h
@@ -189,7 +189,7 @@ extern void check_for_loop_decls (void);
extern void clear_parm_order (void);
extern int complete_array_type (tree, tree, int);
extern void declare_parm_level (int);
-extern tree define_label (const char *, int, tree);
+extern tree define_label (location_t, tree);
extern void finish_decl (tree, tree, tree);
extern tree finish_enum (tree, tree, tree);
extern void finish_function (int, int);