diff options
Diffstat (limited to 'gcc/tree-if-conv.c')
-rw-r--r-- | gcc/tree-if-conv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-if-conv.c b/gcc/tree-if-conv.c index 257759d..4b8d457 100644 --- a/gcc/tree-if-conv.c +++ b/gcc/tree-if-conv.c @@ -2222,7 +2222,7 @@ predicate_rhs_code (gassign *stmt, tree mask, tree cond, /* Construct the arguments to the conditional internal function. */ auto_vec<tree, 8> args; - args.safe_grow (nops + 1); + args.safe_grow (nops + 1, true); args[0] = mask; for (unsigned int i = 1; i < nops; ++i) args[i] = gimple_op (stmt, i); |