diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-17 16:47:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-17 16:47:46 +0000 |
commit | 6bdcda3d3e30003fb6cef1d4e2fd3a5d5b40d3fc (patch) | |
tree | 41b5912ce69512f42f4d6dc44331f27285c622cb /lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp | |
parent | 58f15c482a7129c78ca809792b46befa20ea337d (diff) |
Keep track of *which* input constraint matches an output
constraint. Reject asms where an output has multiple
input constraints tied to it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57687 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp index 64192dc41a..103b5c0e7e 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuild.cpp @@ -4491,7 +4491,7 @@ GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, // If there is an input constraint that matches this, we need to reserve // the input register so no other inputs allocate to it. - isInReg = OpInfo.hasMatchingInput; + isInReg = OpInfo.hasMatchingInput(); break; case InlineAsm::isInput: isInReg = true; @@ -4562,7 +4562,7 @@ GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, // the constraint, so we have to pick a register to pin the input/output to. // If it isn't a matched constraint, go ahead and create vreg and let the // regalloc do its thing. - if (!OpInfo.hasMatchingInput) { + if (!OpInfo.hasMatchingInput()) { RegVT = *PhysReg.second->vt_begin(); if (OpInfo.ConstraintVT == MVT::Other) ValueVT = RegVT; @@ -4863,7 +4863,7 @@ void SelectionDAGLowering::visitInlineAsm(CallSite CS) { case InlineAsm::isInput: { SDValue InOperandVal = OpInfo.CallOperand; - if (OpInfo.isMatchingConstraint()) { // Matching constraint? + if (OpInfo.isMatchingInputConstraint()) { // Matching constraint? // If this is required to match an output register we have already set, // just use its register. unsigned OperandNo = OpInfo.getMatchedOperand(); |