aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-inline.c
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2013-03-08 11:29:06 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2013-03-08 11:29:06 +0000
commita9d5a059c39bec69da52ec8e08be5653fc57875c (patch)
tree4491ef3341d0f40be0dc705c5a8ca5c4a2d69ca8 /gcc/tree-inline.c
parent69bb863a1f5a3ffad2f9504708ee1e37be2e50d3 (diff)
downloadgcc-a9d5a059c39bec69da52ec8e08be5653fc57875c.zip
gcc-a9d5a059c39bec69da52ec8e08be5653fc57875c.tar.gz
gcc-a9d5a059c39bec69da52ec8e08be5653fc57875c.tar.bz2
tree-inline.c (expand_call_inline): Do not associate a BLOCK with the location in BLOCK_SOURCE_LOCATION.
2013-03-08 Richard Biener <rguenther@suse.de> * tree-inline.c (expand_call_inline): Do not associate a BLOCK with the location in BLOCK_SOURCE_LOCATION. * tree-cfg.c (verify_location): Verify BLOCK_SOURCE_LOCATION. From-SVN: r196542
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r--gcc/tree-inline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index 714bcf0..5121765 100644
--- a/gcc/tree-inline.c
+++ b/gcc/tree-inline.c
@@ -3929,7 +3929,7 @@ expand_call_inline (basic_block bb, gimple stmt, copy_body_data *id)
{
id->block = make_node (BLOCK);
BLOCK_ABSTRACT_ORIGIN (id->block) = fn;
- BLOCK_SOURCE_LOCATION (id->block) = input_location;
+ BLOCK_SOURCE_LOCATION (id->block) = LOCATION_LOCUS (input_location);
prepend_lexical_block (gimple_block (stmt), id->block);
}