diff options
author | Richard Henderson <rth@redhat.com> | 2015-05-11 16:33:07 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2015-05-11 16:33:07 -0700 |
commit | 5570ddd5a8ce2125c8290598037a40481f193197 (patch) | |
tree | 4b55c602a352b7b7a5e285dbf28f8840800c137c /gcc/cfgexpand.c | |
parent | 5ce039dfe917d694bef1ecb16844f3b1bcb7ed09 (diff) | |
download | gcc-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/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index b76a219..69d00a0 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -2554,8 +2554,6 @@ expand_asm_operands (tree string, tree outputs, tree inputs, if (! check_operand_nalternatives (outputs, inputs)) return; - string = resolve_asm_operand_names (string, outputs, inputs, labels); - /* Collect constraints. */ i = 0; for (t = outputs; t ; t = TREE_CHAIN (t), i++) |