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 f4bd5cf3dd
commit d758625083
1 changed files with 2 additions and 1 deletions

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