Do not use default arguments of DataLayout::getPointer*. NFC

Summary: There are "FIXME"s in include/llvm/IR/DataLayout.h to remove the default arguments.

Reviewers: zturner, clayborg

Reviewed By: zturner

Subscribers: bjope

Differential Revision: https://reviews.llvm.org/D40064

llvm-svn: 319869
This commit is contained in:
Fangrui Song 2017-12-06 01:32:06 +00:00
parent 8cec32cc5f
commit c09bce1146
1 changed files with 0 additions and 5 deletions

View File

@ -385,11 +385,6 @@ public:
return ret;
}
lldb::addr_t MallocPointer() {
return Malloc(m_target_data.getPointerSize(),
m_target_data.getPointerPrefAlignment());
}
lldb::addr_t Malloc(llvm::Type *type) {
lldb_private::Status alloc_error;