diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-17 21:33:43 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-17 21:33:43 +0000 |
commit | cbc44df5c4c3082485061839b1786066d3e371e3 (patch) | |
tree | 58f53ff8b90ef0d35498ee8d08bb3febee99cd2b /gcc/java/class.c | |
parent | b123dda9563bfa58a323b9d8d5ea6f0b25c50645 (diff) | |
download | gcc-cbc44df5c4c3082485061839b1786066d3e371e3.tar.gz |
* (c-decl.c, c-semantics.c, calls.c, cgraph.c, cgraphunit.c,
function.c, integrate.c, print-tree.c, toplev.c, tree-optimize.c,
tree.h): Replace DECL_SAVED_INSNS with DECL_STRUCT_FUNCTION.
* ada/utils.c: Likewise.
* cp/decl.c: Likewise.
* f/com.c: Likewise.
* java/class.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77985 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r-- | gcc/java/class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c index 58cf778ecba..f6471ef5c49 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -1710,7 +1710,7 @@ finish_class (void) /* Emit deferred inline methods. */ for (method = type_methods; method != NULL_TREE; ) { - if (! TREE_ASM_WRITTEN (method) && DECL_SAVED_INSNS (method) != 0) + if (! TREE_ASM_WRITTEN (method) && DECL_STRUCT_FUNCTION (method) != 0) { output_inline_function (method); /* Scan the list again to see if there are any earlier |