add a hack to temporarily allow pseudo source values.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55289 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2008-08-24 18:33:17 +00:00
parent c56711c212
commit 5a1c68c776

View File

@ -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!");
}
}