diff options
Diffstat (limited to 'llvm/lib/Transforms/Utils/Local.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/Local.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Utils/Local.cpp b/llvm/lib/Transforms/Utils/Local.cpp index 57dc1b3..123881e 100644 --- a/llvm/lib/Transforms/Utils/Local.cpp +++ b/llvm/lib/Transforms/Utils/Local.cpp @@ -2435,8 +2435,8 @@ bool llvm::replaceAllDbgUsesWith(Instruction &From, Value &To, // Handle integer-to-integer widening and narrowing. // FIXME: Use DW_OP_convert when it's available everywhere. if (FromTy->isIntegerTy() && ToTy->isIntegerTy()) { - uint64_t FromBits = FromTy->getPrimitiveSizeInBits(); - uint64_t ToBits = ToTy->getPrimitiveSizeInBits(); + uint64_t FromBits = FromTy->getIntegerBitWidth(); + uint64_t ToBits = ToTy->getIntegerBitWidth(); assert(FromBits != ToBits && "Unexpected no-op conversion"); // When the width of the result grows, assume that a debugger will only |