diff options
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 6af2079..c0dc7b9 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -4100,7 +4100,7 @@ estimate_num_insns (gimple *stmt, eni_weights *weights) with very long asm statements. */ if (count > 1000) count = 1000; - return count; + return MAX (1, count); } case GIMPLE_RESX: |