forked from OSchip/llvm-project
MCRegisterClass should be returned by const ref, not by value.
llvm-svn: 166822
This commit is contained in:
parent
2962d9599e
commit
a312bb0879
|
@ -370,7 +370,7 @@ public:
|
|||
|
||||
/// getRegClass - Returns the register class associated with the enumeration
|
||||
/// value. See class MCOperandInfo.
|
||||
const MCRegisterClass getRegClass(unsigned i) const {
|
||||
const MCRegisterClass& getRegClass(unsigned i) const {
|
||||
assert(i < getNumRegClasses() && "Register Class ID out of range");
|
||||
return Classes[i];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue