I think we got non-machine specific constpool entries covered.
authorEvan Cheng <evan.cheng@apple.com>
Thu, 30 Oct 2008 23:43:36 +0000 (23:43 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Thu, 30 Oct 2008 23:43:36 +0000 (23:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58474 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMCodeEmitter.cpp

index b6a57e533094c6123bc546ca5f70c8e13a84f615..7241090197532f9b55c0ed8de555615e0923ad9f 100644 (file)
@@ -397,7 +397,8 @@ void ARMCodeEmitter::emitConstPoolInstruction(const MachineInstr &MI) {
       emitGlobalAddress(GV, ARM::reloc_arm_absolute, false);
       MCE.emitWordLE(0);
     } else {
-      abort(); // FIXME: Is this right?
+      assert(CV->getType()->isInteger() &&
+             "Not expecting non-integer constpool entries yet!");
       const ConstantInt *CI = dyn_cast<ConstantInt>(CV);
       uint32_t Val = *(uint32_t*)CI->getValue().getRawData();
       MCE.emitWordLE(Val);