Commit 0cc1565a by Ranjit Mathew Committed by Andrew Haley

parse.y (source_end_java_method): Remove custom encoding of line numbers for a…

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 <rmathew@hotmail.com>
        Andrew Haley <aph@redhat.com>

        * 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 <aph@redhat.com>

From-SVN: r59892
parent aa06e8f5
2002-12-05 Ranjit Mathew <rmathew@hotmail.com>
Andrew Haley <aph@redhat.com>
* 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 <aph@redhat.com> 2002-12-03 Andrew Haley <aph@redhat.com>
* class.c (make_class_data): New field, "chain". * class.c (make_class_data): New field, "chain".
......
...@@ -7504,6 +7504,8 @@ source_end_java_method () ...@@ -7504,6 +7504,8 @@ source_end_java_method ()
lineno = DECL_SOURCE_LINE_LAST (fndecl); lineno = DECL_SOURCE_LINE_LAST (fndecl);
expand_function_end (input_filename, lineno, 0); 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. */ /* Run the optimizers and output assembler code for this function. */
rest_of_compilation (fndecl); rest_of_compilation (fndecl);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment