summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-06-02 23:16:42 +0000
committerEric Christopher <echristo@apple.com>2011-06-02 23:16:42 +0000
commit100c83341676d8aae8fc34b5452563ed08b14f3e (patch)
tree2a454e55602b207487f2b47e4832b8715368f0b7 /include
parent4f3fb6d08be511a277f92279e803ae6e95b00126 (diff)
downloadllvm-100c83341676d8aae8fc34b5452563ed08b14f3e.tar.gz
llvm-100c83341676d8aae8fc34b5452563ed08b14f3e.tar.bz2
llvm-100c83341676d8aae8fc34b5452563ed08b14f3e.tar.xz
Have LowerOperandForConstraint handle multiple character constraints.
Part of rdar://9119939 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetLowering.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index 7685e2d6ab..6c08da88d2 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -1449,7 +1449,7 @@ public:
/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
/// vector. If it is invalid, don't add anything to Ops.
- virtual void LowerAsmOperandForConstraint(SDValue Op, char ConstraintLetter,
+ virtual void LowerAsmOperandForConstraint(SDValue Op, std::string &Constraint,
std::vector<SDValue> &Ops,
SelectionDAG &DAG) const;