mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
Special case FixedStackPseudoSourceValueVal as well. Do we really need to differentiate PseudoSourceValueVal from FixedStackPseudoSourceValueVal at this level?
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88902 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
39aa7251a2
commit
746d546877
@ -1238,7 +1238,8 @@ static void WriteAsOperandInternal(raw_ostream &Out, const Value *V,
|
||||
return;
|
||||
}
|
||||
|
||||
if (V->getValueID() == Value::PseudoSourceValueVal) {
|
||||
if (V->getValueID() == Value::PseudoSourceValueVal ||
|
||||
V->getValueID() == Value::FixedStackPseudoSourceValueVal) {
|
||||
V->print(Out);
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user