summaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/function.c b/gcc/function.c
index baec4ab3048..1af4d38ff01 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -6399,8 +6399,8 @@ init_function_start (tree subr)
function. Also tell final how to output a linenum before the
function prologue. Note linenums could be missing, e.g. when
compiling a Java .class file. */
- if (DECL_SOURCE_LINE (subr))
- emit_line_note (DECL_SOURCE_LOCATION (subr));
+ if (TREE_LOCUS_SET_P (subr))
+ emit_line_note (TREE_LOCUS (subr));
/* Make sure first insn is a note even if we don't want linenums.
This makes sure the first insn will never be deleted.