mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 05:10:33 +08:00
* tree-inline.c (estimate_num_insns_1): Correct increase of count.
From-SVN: r84844
This commit is contained in:
parent
c0f43fa72e
commit
e36f6190a9
@ -1,3 +1,7 @@
|
||||
2004-07-16 Krister Walfridsson <cato@df.lth.se>
|
||||
|
||||
* tree-inline.c (estimate_num_insns_1): Correct increase of count.
|
||||
|
||||
2004-07-16 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* builtins.c (std_expand_builtin_va_arg): Remove.
|
||||
|
@ -1364,7 +1364,7 @@ estimate_num_insns_1 (tree *tp, int *walk_subtrees, void *data)
|
||||
case ASM_EXPR:
|
||||
|
||||
case RESX_EXPR:
|
||||
*count++;
|
||||
*count += 1;
|
||||
break;
|
||||
|
||||
/* Few special cases of expensive operations. This is useful
|
||||
|
Loading…
x
Reference in New Issue
Block a user