From: Chris Lattner Date: Sun, 24 Aug 2008 18:33:17 +0000 (+0000) Subject: add a hack to temporarily allow pseudo source values. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5a1c68c776076047060a6c7228520528539ba93b;p=oota-llvm.git 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 --- diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index cd7b8a675d2..1b98d55dbac 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -1778,7 +1778,8 @@ void Value::print(raw_ostream &OS, AssemblyAnnotationWriter *AAW) const { } else if (isa(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!"); } }