aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-02-24 02:13:31 +0000
committerChris Lattner <sabre@nondot.org>2006-02-24 02:13:31 +0000
commitfd105d464a8a61a6dd7e6e11b7da87417e713c39 (patch)
tree64786b7271655c1409636ffce1908f36c6202a76
parente5d8861126959d01cf847b6ef280dd9ef38d33cf (diff)
Select inline asm memory operands.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26349 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--utils/TableGen/DAGISelEmitter.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/TableGen/DAGISelEmitter.cpp b/utils/TableGen/DAGISelEmitter.cpp
index cd3045d730..872f08cc3b 100644
--- a/utils/TableGen/DAGISelEmitter.cpp
+++ b/utils/TableGen/DAGISelEmitter.cpp
@@ -2986,6 +2986,7 @@ void DAGISelEmitter::EmitInstructionSelector(std::ostream &OS) {
<< " // Select the flag operand.\n"
<< " if (Ops.back().getValueType() == MVT::Flag)\n"
<< " Select(Ops.back(), Ops.back());\n"
+ << " SelectInlineAsmMemoryOperands(Ops, *CurDAG);\n"
<< " std::vector<MVT::ValueType> VTs;\n"
<< " VTs.push_back(MVT::Other);\n"
<< " VTs.push_back(MVT::Flag);\n"