Assert. Rather than silently stop printing.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28794 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2006-06-15 08:10:56 +00:00
parent f4432fac14
commit a9767f6218

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;
}