diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2009-07-07 02:55:59 +0000 |
---|---|---|
committer | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2009-07-07 02:55:59 +0000 |
commit | c5d753640d06e51da60056f0ee354b5134cad1f7 (patch) | |
tree | d34263b5ff9f1576a23b9f95e545dc831212bc84 /gcc/cgraphunit.c | |
parent | b932c20b25c7516eb5fa2a813b8bfa786569c0b4 (diff) | |
download | gcc-c5d753640d06e51da60056f0ee354b5134cad1f7.zip gcc-c5d753640d06e51da60056f0ee354b5134cad1f7.tar.gz gcc-c5d753640d06e51da60056f0ee354b5134cad1f7.tar.bz2 |
cgraphunit.c: Replace %J by an explicit location.
2009-07-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
* cgraphunit.c: Replace %J by an explicit location. Update all
calls.
* c-decl.c: Likewise.
* function.c: Likewise.
* varasm.c: Likewise.
* tree-ssa.c: Likewise.
* c-common.c: Likewise.
* tree-cfg.c: Likewise.
* config/spu/spu.c: Likewise.
* config/ia64/ia64.c: Likewise.
* config/v850/v850.c: Likewise.
java/
* class.c: Replace %J by an explicit location. Update all calls.
objc/
* objc-act.c: Replace %J by an explicit location. Update all
calls.
cp/
* init.c: Replace %J by an explicit location. Update all calls.
* decl.c: Likewise.
* typeck2.c: Likewise.
* pt.c: Likewise.
* name-lookup.c: Likewise.
From-SVN: r149312
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 97c28f4..4521f3b 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -845,9 +845,9 @@ process_function_and_variable_attributes (struct cgraph_node *first, if (lookup_attribute ("externally_visible", DECL_ATTRIBUTES (decl))) { if (! TREE_PUBLIC (node->decl)) - warning (OPT_Wattributes, - "%J%<externally_visible%> attribute have effect only on public objects", - node->decl); + warning_at (DECL_SOURCE_LOCATION (node->decl), OPT_Wattributes, + "%<externally_visible%>" + " attribute have effect only on public objects"); else { if (node->local.finalized) @@ -868,9 +868,9 @@ process_function_and_variable_attributes (struct cgraph_node *first, if (lookup_attribute ("externally_visible", DECL_ATTRIBUTES (decl))) { if (! TREE_PUBLIC (vnode->decl)) - warning (OPT_Wattributes, - "%J%<externally_visible%> attribute have effect only on public objects", - vnode->decl); + warning_at (DECL_SOURCE_LOCATION (vnode->decl), OPT_Wattributes, + "%<externally_visible%>" + " attribute have effect only on public objects"); else { if (vnode->finalized) |