Skip to content

Commit 4e4d887

Browse files
authored
Merge pull request #262 from Teemperor/RemoveGetAlignedBitSizeMaster
[upstreaming][NFC] Remove unused CompilerType::GetAlignedBitSize
2 parents fee75b5 + 1db1803 commit 4e4d887

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

lldb/include/lldb/Symbol/CompilerType.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,6 @@ class CompilerType {
264264

265265
lldb::Format GetFormat() const;
266266

267-
uint64_t GetAlignedBitSize() const;
268-
269267
llvm::Optional<size_t> GetTypeBitAlign(ExecutionContextScope *exe_scope) const;
270268

271269
uint32_t GetNumChildren(bool omit_empty_base_classes,

lldb/source/Symbol/CompilerType.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,8 +530,6 @@ CompilerType::GetByteStride(ExecutionContextScope *exe_scope) const {
530530
return {};
531531
}
532532

533-
uint64_t CompilerType::GetAlignedBitSize() const { return 0; }
534-
535533
llvm::Optional<size_t> CompilerType::GetTypeBitAlign(ExecutionContextScope *exe_scope) const {
536534
if (IsValid())
537535
return m_type_system->GetTypeBitAlign(m_type, exe_scope);

0 commit comments

Comments
 (0)