From 0cc1565af00c141e5ad2be28e0312d57dcdcced5 Mon Sep 17 00:00:00 2001 From: Ranjit Mathew Date: Fri, 6 Dec 2002 20:10:33 +0000 Subject: parse.y (source_end_java_method): Remove custom encoding of line numbers for a function decl before passing it to... 2002-12-05 Ranjit Mathew Andrew Haley * parse.y (source_end_java_method): Remove custom encoding of line numbers for a function decl before passing it to the back end. Co-Authored-By: Andrew Haley From-SVN: r59892 --- gcc/java/ChangeLog | 6 ++++++ gcc/java/parse.y | 2 ++ 2 files changed, 8 insertions(+) diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index afe7b64..c6d0de1 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,9 @@ +2002-12-05 Ranjit Mathew + Andrew Haley + + * parse.y (source_end_java_method): Remove custom encoding of line + numbers for a function decl before passing it to the back end. + 2002-12-03 Andrew Haley * class.c (make_class_data): New field, "chain". diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 97a0e6a..d457f1a 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -7504,6 +7504,8 @@ source_end_java_method () lineno = DECL_SOURCE_LINE_LAST (fndecl); expand_function_end (input_filename, lineno, 0); + DECL_SOURCE_LINE (fndecl) = DECL_SOURCE_LINE_FIRST (fndecl); + /* Run the optimizers and output assembler code for this function. */ rest_of_compilation (fndecl); } -- cgit v1.1