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/ARM/ARMISelLowering.h | |
| 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/ARM/ARMISelLowering.h')
| -rw-r--r-- | lib/Target/ARM/ARMISelLowering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.h b/lib/Target/ARM/ARMISelLowering.h index 2c2a2cd..1496285 100644 --- a/lib/Target/ARM/ARMISelLowering.h +++ b/lib/Target/ARM/ARMISelLowering.h @@ -133,7 +133,7 @@ namespace llvm { uint64_t &KnownZero, uint64_t &KnownOne, unsigned Depth) const; - ConstraintType getConstraintType(char ConstraintLetter) const; + ConstraintType getConstraintType(const std::string &Constraint) const; std::pair<unsigned, const TargetRegisterClass*> getRegForInlineAsmConstraint(const std::string &Constraint, MVT::ValueType VT) const; |
