aboutsummaryrefslogtreecommitdiff
path: root/gcc/java
diff options
context:
space:
mode:
authorRanjit Mathew <rmathew@hotmail.com>2002-12-06 20:10:33 +0000
committerAndrew Haley <aph@redhat.com>2002-12-06 20:10:33 +0000
commit3bf50973cc7f3e8409114180ac46cdfa366a32ee (patch)
treefcd9fdfa4b4eca6d4977f685f8b7bfde8df52eb6 /gcc/java
parent56fe9cf6d4d5999e12de1d61eca25263fb600b21 (diff)
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. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@59892 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java')
-rw-r--r--gcc/java/ChangeLog6
-rw-r--r--gcc/java/parse.y2
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index afe7b647fec..c6d0de1c1e3 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,9 @@
+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>
* class.c (make_class_data): New field, "chain".
diff --git a/gcc/java/parse.y b/gcc/java/parse.y
index 97a0e6a0e27..d457f1a046d 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);
}