forked from OSchip/llvm-project
add a hack to temporarily allow pseudo source values.
llvm-svn: 55289
This commit is contained in:
parent
f4bd5cf3dd
commit
d758625083
|
@ -1778,7 +1778,8 @@ void Value::print(raw_ostream &OS, AssemblyAnnotationWriter *AAW) const {
|
|||
} else if (isa<InlineAsm>(this)) {
|
||||
WriteAsOperand(OS, this, true, 0);
|
||||
} else {
|
||||
assert(0 && "Unknown value to print out!");
|
||||
// FIXME: PseudoSourceValue breaks this!
|
||||
//assert(0 && "Unknown value to print out!");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue