diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-08-22 20:51:00 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-08-22 20:51:00 +0000 |
commit | b29ec1e040fb798418eee8a14e13f9df7c372658 (patch) | |
tree | 5fcbaa2d864f7798b0316141777e210f237fe79d /llvm/lib/MC/MCFragment.cpp | |
parent | a392049419b4515fd0838a4882f761db006cb9ad (diff) | |
download | bcm5719-llvm-b29ec1e040fb798418eee8a14e13f9df7c372658.tar.gz bcm5719-llvm-b29ec1e040fb798418eee8a14e13f9df7c372658.zip |
ADT: Remove ilist_*sentinel_traits, NFC
Remove all the dead code around ilist_*sentinel_traits. This is a
follow-up to gutting them as part of r279314 (originally r278974),
staged to prevent broken builds in sub-projects.
Uses were removed from clang in r279457 and lld in r279458.
llvm-svn: 279473
Diffstat (limited to 'llvm/lib/MC/MCFragment.cpp')
-rw-r--r-- | llvm/lib/MC/MCFragment.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/MC/MCFragment.cpp b/llvm/lib/MC/MCFragment.cpp index eae0dfe568e..638d9103336 100644 --- a/llvm/lib/MC/MCFragment.cpp +++ b/llvm/lib/MC/MCFragment.cpp @@ -235,10 +235,6 @@ void ilist_node_traits<MCFragment>::deleteNode(MCFragment *V) { V->destroy(); } -MCFragment::MCFragment() : Kind(FragmentType(~0)), HasInstructions(false), - AlignToBundleEnd(false), BundlePadding(0) { -} - MCFragment::~MCFragment() { } MCFragment::MCFragment(FragmentType Kind, bool HasInstructions, |