diff options
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 58cf778..f6471ef 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 |