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/TargetLowering.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/TargetLowering.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/TargetLowering.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 664e06d2d2..479e1380c5 100644 --- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -1962,9 +1962,9 @@ getRegForInlineAsmConstraint(const std::string &Constraint, //===----------------------------------------------------------------------===// // Constraint Selection. -/// isMatchingConstraint - Return true of this is an input operand that is a -/// matching constraint like "4". -bool TargetLowering::AsmOperandInfo::isMatchingConstraint() const { +/// isMatchingInputConstraint - Return true of this is an input operand that is +/// a matching constraint like "4". +bool TargetLowering::AsmOperandInfo::isMatchingInputConstraint() const { assert(!ConstraintCode.empty() && "No known constraint!"); return isdigit(ConstraintCode[0]); } |