aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Target/TargetRegInfo.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetRegInfo.h b/include/llvm/Target/TargetRegInfo.h
index 5f88ae9e83..9b787bb553 100644
--- a/include/llvm/Target/TargetRegInfo.h
+++ b/include/llvm/Target/TargetRegInfo.h
@@ -14,6 +14,7 @@
class TargetMachine;
class IGNode;
+class Type;
class Value;
class LiveRangeInfo;
class Method;
@@ -84,9 +85,11 @@ public:
// condition code register. If isCCReg is true below, the ID of the condition
// code regiter class will be returned. Otherwise, the normal register
// class (eg. int, float) must be returned.
+ virtual unsigned getRegClassIDOfType (const Type *type,
+ bool isCCReg = false) const =0;
virtual unsigned getRegClassIDOfValue (const Value *Val,
bool isCCReg = false) const =0;
-
+
inline unsigned int getNumOfRegClasses() const {
return MachineRegClassArr.size();