mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 22:31:44 +00:00
Fix crashing on TargetCustom PseudoSourceValues
Default to something more reasonable if printCustom isn't implemented. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@298941 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3812900a6d
commit
98ede9e115
@ -29,7 +29,10 @@ PseudoSourceValue::PseudoSourceValue(PSVKind Kind) : Kind(Kind) {}
|
|||||||
PseudoSourceValue::~PseudoSourceValue() {}
|
PseudoSourceValue::~PseudoSourceValue() {}
|
||||||
|
|
||||||
void PseudoSourceValue::printCustom(raw_ostream &O) const {
|
void PseudoSourceValue::printCustom(raw_ostream &O) const {
|
||||||
|
if (Kind < TargetCustom)
|
||||||
O << PSVNames[Kind];
|
O << PSVNames[Kind];
|
||||||
|
else
|
||||||
|
O << "TargetCustom" << Kind;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const {
|
bool PseudoSourceValue::isConstant(const MachineFrameInfo *) const {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user