diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-03-25 02:14:49 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-03-25 02:14:49 +0000 |
| commit | 4234f57fa02b1f04a9f52a7b3c2aa22d32ac521c (patch) | |
| tree | be85ddfcc73a327c28ecfa0d4d081a06a7467869 /lib/Target/X86/X86ISelLowering.cpp | |
| parent | 2b81207b4b2bafa912851e8935271aa2faf82cfe (diff) | |
| download | external_llvm-4234f57fa02b1f04a9f52a7b3c2aa22d32ac521c.zip external_llvm-4234f57fa02b1f04a9f52a7b3c2aa22d32ac521c.tar.gz external_llvm-4234f57fa02b1f04a9f52a7b3c2aa22d32ac521c.tar.bz2 | |
switch TargetLowering::getConstraintType to take the entire constraint,
not just the first letter. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86ISelLowering.cpp')
| -rw-r--r-- | lib/Target/X86/X86ISelLowering.cpp | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 3796f30..1686c25 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -4521,19 +4521,23 @@ SDOperand X86TargetLowering::PerformDAGCombine(SDNode *N, /// getConstraintType - Given a constraint letter, return the type of /// constraint it is for this target. X86TargetLowering::ConstraintType -X86TargetLowering::getConstraintType(char ConstraintLetter) const { - switch (ConstraintLetter) { - case 'A': - case 'r': - case 'R': - case 'l': - case 'q': - case 'Q': - case 'x': - case 'Y': - return C_RegisterClass; - default: return TargetLowering::getConstraintType(ConstraintLetter); +X86TargetLowering::getConstraintType(const std::string &Constraint) const { + if (Constraint.size() == 1) { + switch (Constraint[0]) { + case 'A': + case 'r': + case 'R': + case 'l': + case 'q': + case 'Q': + case 'x': + case 'Y': + return C_RegisterClass; + default: + break; + } } + return TargetLowering::getConstraintType(Constraint); } /// isOperandValidForConstraint - Return the specified operand (possibly |
