Skip to content

[upstreaming][NFC] Remove unused CompilerType::GetAlignedBitSize #262

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions lldb/include/lldb/Symbol/CompilerType.h
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,6 @@ class CompilerType {

lldb::Format GetFormat() const;

uint64_t GetAlignedBitSize() const;

llvm::Optional<size_t> GetTypeBitAlign(ExecutionContextScope *exe_scope) const;

uint32_t GetNumChildren(bool omit_empty_base_classes,
Expand Down
2 changes: 0 additions & 2 deletions lldb/source/Symbol/CompilerType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -530,8 +530,6 @@ CompilerType::GetByteStride(ExecutionContextScope *exe_scope) const {
return {};
}

uint64_t CompilerType::GetAlignedBitSize() const { return 0; }

llvm::Optional<size_t> CompilerType::GetTypeBitAlign(ExecutionContextScope *exe_scope) const {
if (IsValid())
return m_type_system->GetTypeBitAlign(m_type, exe_scope);
Expand Down