aboutsummaryrefslogtreecommitdiff
path: root/gcc/stmt.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2015-05-11 16:33:07 -0700
committerRichard Henderson <rth@gcc.gnu.org>2015-05-11 16:33:07 -0700
commit5570ddd5a8ce2125c8290598037a40481f193197 (patch)
tree4b55c602a352b7b7a5e285dbf28f8840800c137c /gcc/stmt.c
parent5ce039dfe917d694bef1ecb16844f3b1bcb7ed09 (diff)
downloadgcc-5570ddd5a8ce2125c8290598037a40481f193197.zip
gcc-5570ddd5a8ce2125c8290598037a40481f193197.tar.gz
gcc-5570ddd5a8ce2125c8290598037a40481f193197.tar.bz2
Only resolve_asm_operand_names once
We do it in the front end already; no need to repeat. From-SVN: r223022
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r--gcc/stmt.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c
index 6c62a12..e63179f 100644
--- a/gcc/stmt.c
+++ b/gcc/stmt.c
@@ -562,9 +562,10 @@ check_unique_operand_names (tree outputs, tree inputs, tree labels)
return false;
}
-/* A subroutine of expand_asm_operands. Resolve the names of the operands
- in *POUTPUTS and *PINPUTS to numbers, and replace the name expansions in
- STRING and in the constraints to those numbers. */
+/* Resolve the names of the operands in *POUTPUTS and *PINPUTS to numbers,
+ and replace the name expansions in STRING and in the constraints to
+ those numbers. This is generally done in the front end while creating
+ the ASM_EXPR generic tree that eventually becomes the GIMPLE_ASM. */
tree
resolve_asm_operand_names (tree string, tree outputs, tree inputs, tree labels)