diff options
Diffstat (limited to 'lldb/source/Expression/IRDynamicChecks.cpp')
-rw-r--r-- | lldb/source/Expression/IRDynamicChecks.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Expression/IRDynamicChecks.cpp b/lldb/source/Expression/IRDynamicChecks.cpp index 364220ae820..02006bb2414 100644 --- a/lldb/source/Expression/IRDynamicChecks.cpp +++ b/lldb/source/Expression/IRDynamicChecks.cpp @@ -280,7 +280,7 @@ protected: llvm::Value *BuildPointerValidatorFunc(lldb::addr_t start_address) { IntegerType *intptr_ty = llvm::Type::getIntNTy(m_module.getContext(), - (m_module.getPointerSize(0) == llvm::Module::Pointer64) ? 64 : 32); + (m_module.getPointerSize() == llvm::Module::Pointer64) ? 64 : 32); llvm::Type *param_array[1]; @@ -307,7 +307,7 @@ protected: llvm::Value *BuildObjectCheckerFunc(lldb::addr_t start_address) { IntegerType *intptr_ty = llvm::Type::getIntNTy(m_module.getContext(), - (m_module.getPointerSize(0) == llvm::Module::Pointer64) ? 64 : 32); + (m_module.getPointerSize() == llvm::Module::Pointer64) ? 64 : 32); llvm::Type *param_array[2]; |