Assert. Rather than silently stop printing.

llvm-svn: 28794
This commit is contained in:
Evan Cheng 2006-06-15 08:10:56 +00:00
parent 276a39d956
commit 459add845e

View File

@ -536,6 +536,8 @@ void AsmPrinter::EmitGlobalConstant(const Constant *CV) {
break;
case Type::PointerTyID:
if (TD->getPointerSize() == 8) {
assert(Data64bitsDirective &&
"Target cannot handle 64-bit pointer exprs!");
O << Data64bitsDirective;
break;
}