commit | a9767f6218bf5d56953ae28b0531f6d558bf36c2 | [log] [tgz] |
---|---|---|
author | Evan Cheng <evan.cheng@apple.com> | Thu Jun 15 08:10:56 2006 +0000 |
committer | Evan Cheng <evan.cheng@apple.com> | Thu Jun 15 08:10:56 2006 +0000 |
tree | 2acf90e7641f405867d795b0a77e5b19c685ea35 | |
parent | f4432fac1425a590dd0e725ed3dd626cf37e1a37 [diff] |
Assert. Rather than silently stop printing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28794 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index 269b958..b3e27c9 100644 --- a/lib/CodeGen/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter.cpp
@@ -536,6 +536,8 @@ break; case Type::PointerTyID: if (TD->getPointerSize() == 8) { + assert(Data64bitsDirective && + "Target cannot handle 64-bit pointer exprs!"); O << Data64bitsDirective; break; }