]> granicus.if.org Git - llvm/commitdiff
LowerTypeTests: Simplify. NFC.
authorPeter Collingbourne <peter@pcc.me.uk>
Tue, 7 Feb 2017 03:20:58 +0000 (03:20 +0000)
committerPeter Collingbourne <peter@pcc.me.uk>
Tue, 7 Feb 2017 03:20:58 +0000 (03:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294273 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/LowerTypeTests.cpp

index 120e93ab5b731c6c8d65fd7816287e898f4af0d6..7bf96510b0a0464514c7bf8c4b0a58c6106f5aa5 100644 (file)
@@ -746,7 +746,6 @@ LowerTypeTestsModule::importTypeId(StringRef TypeId) {
   TIL.TheKind = TTRes.TheKind;
 
   auto ImportGlobal = [&](StringRef Name, unsigned AbsWidth) {
-    unsigned PtrWidth = IntPtrTy->getBitWidth();
     Constant *C =
         M.getOrInsertGlobal(("__typeid_" + TypeId + "_" + Name).str(), Int8Ty);
     auto *GV = dyn_cast<GlobalVariable>(C);
@@ -757,13 +756,12 @@ LowerTypeTestsModule::importTypeId(StringRef TypeId) {
 
     GV->setVisibility(GlobalValue::HiddenVisibility);
     auto SetAbsRange = [&](uint64_t Min, uint64_t Max) {
-      auto *T = IntegerType::get(M.getContext(), PtrWidth);
-      auto *MinC = ConstantAsMetadata::get(ConstantInt::get(T, Min));
-      auto *MaxC = ConstantAsMetadata::get(ConstantInt::get(T, Max));
+      auto *MinC = ConstantAsMetadata::get(ConstantInt::get(IntPtrTy, Min));
+      auto *MaxC = ConstantAsMetadata::get(ConstantInt::get(IntPtrTy, Max));
       GV->setMetadata(LLVMContext::MD_absolute_symbol,
                       MDNode::get(M.getContext(), {MinC, MaxC}));
     };
-    if (AbsWidth == PtrWidth)
+    if (AbsWidth == IntPtrTy->getBitWidth())
       SetAbsRange(~0ull, ~0ull); // Full set.
     else if (AbsWidth)
       SetAbsRange(0, 1ull << AbsWidth);