forked from OSchip/llvm-project
parent
cb69f50cb5
commit
ae54cfc19f
|
@ -141,14 +141,14 @@ public:
|
||||||
/// isPhysicalRegister - Return true if the specified register number is in
|
/// isPhysicalRegister - Return true if the specified register number is in
|
||||||
/// the physical register namespace.
|
/// the physical register namespace.
|
||||||
static bool isPhysicalRegister(unsigned Reg) {
|
static bool isPhysicalRegister(unsigned Reg) {
|
||||||
assert(Reg && "this is not a register!";
|
assert(Reg && "this is not a register!");
|
||||||
return Reg < FirstVirtualRegister;
|
return Reg < FirstVirtualRegister;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// isVirtualRegister - Return true if the specified register number is in
|
/// isVirtualRegister - Return true if the specified register number is in
|
||||||
/// the virtual register namespace.
|
/// the virtual register namespace.
|
||||||
static bool isVirtualRegister(unsigned Reg) {
|
static bool isVirtualRegister(unsigned Reg) {
|
||||||
assert(Reg && "this is not a register!";
|
assert(Reg && "this is not a register!");
|
||||||
return Reg >= FirstVirtualRegister;
|
return Reg >= FirstVirtualRegister;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue