diff options
| author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-28 06:44:20 +0000 |
|---|---|---|
| committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-28 06:44:20 +0000 |
| commit | fccae495ebc0523270fc941fc76f69d05b7870ab (patch) | |
| tree | 5ae8ebb466e9e12e3fd55604d93fb2e7956b0db1 | |
| parent | cd0c3d248bbe4b18d1f85082621b5da0c882c0dd (diff) | |
| download | ppe42-gcc-fccae495ebc0523270fc941fc76f69d05b7870ab.tar.gz ppe42-gcc-fccae495ebc0523270fc941fc76f69d05b7870ab.zip | |
* expr.c (build_expr_wfl): Only declare last_file and last_filenode
local static variables if not USE_MAPPED_LOCATION.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91408 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/java/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/java/expr.c | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 43bdf68047b..0d65ea1814d 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,8 @@ +2004-11-27 Per Bothner <per@bothner.com> + + * expr.c (build_expr_wfl): Only declare last_file and last_filenode + local static variables if not USE_MAPPED_LOCATION. + 2004-11-27 Kazu Hirata <kazu@cs.umass.edu> * class.c, decl.c, expr.c: Fix comment typos. diff --git a/gcc/java/expr.c b/gcc/java/expr.c index 9df841b058f..fdc8ae69ce6 100644 --- a/gcc/java/expr.c +++ b/gcc/java/expr.c @@ -3564,13 +3564,14 @@ build_expr_wfl (tree node, ) { tree wfl; - static const char *last_file = 0; - static tree last_filenode = NULL_TREE; #ifdef USE_MAPPED_LOCATION wfl = make_node (EXPR_WITH_FILE_LOCATION); SET_EXPR_LOCATION (wfl, location); #else + static const char *last_file = 0; + static tree last_filenode = NULL_TREE; + wfl = make_node (EXPR_WITH_FILE_LOCATION); EXPR_WFL_SET_LINECOL (wfl, line, col); |

