diff options
Diffstat (limited to 'gcc/tree-ssa-operands.cc')
-rw-r--r-- | gcc/tree-ssa-operands.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-operands.cc b/gcc/tree-ssa-operands.cc index 4eb9673..a5970ac 100644 --- a/gcc/tree-ssa-operands.cc +++ b/gcc/tree-ssa-operands.cc @@ -721,7 +721,7 @@ operands_scanner::get_asm_stmt_operands (gasm *stmt) constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link))); oconstraints[i] = constraint; parse_output_constraint (&constraint, i, 0, 0, &allows_mem, - &allows_reg, &is_inout); + &allows_reg, &is_inout, nullptr); /* This should have been split in gimplify_asm_expr. */ gcc_assert (!allows_reg || !is_inout); @@ -740,7 +740,7 @@ operands_scanner::get_asm_stmt_operands (gasm *stmt) tree link = gimple_asm_input_op (stmt, i); constraint = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (link))); parse_input_constraint (&constraint, 0, 0, noutputs, 0, oconstraints, - &allows_mem, &allows_reg); + &allows_mem, &allows_reg, nullptr); /* Memory operands are addressable. Note that STMT needs the address of this operand. */ |