1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

add a hack to temporarily allow pseudo source values.

llvm-svn: 55289
This commit is contained in:
Chris Lattner 2008-08-24 18:33:17 +00:00
parent 2147640791
commit f6e98a0f30

View File

@ -1778,7 +1778,8 @@ void Value::print(raw_ostream &OS, AssemblyAnnotationWriter *AAW) const {
} else if (isa<InlineAsm>(this)) { } else if (isa<InlineAsm>(this)) {
WriteAsOperand(OS, this, true, 0); WriteAsOperand(OS, this, true, 0);
} else { } else {
assert(0 && "Unknown value to print out!"); // FIXME: PseudoSourceValue breaks this!
//assert(0 && "Unknown value to print out!");
} }
} }