diff options
author | Eli Friedman <efriedma@codeaurora.org> | 2018-10-12 19:41:05 +0000 |
---|---|---|
committer | Eli Friedman <efriedma@codeaurora.org> | 2018-10-12 19:41:05 +0000 |
commit | a6e3a823b3aac3cce6e5c0c3a5816c5f0ad2cd93 (patch) | |
tree | 2610efe3483b5d29deeb1ab63eb3c3da85ee9d4e /llvm/lib/MC/MCDwarf2BTF.h | |
parent | 1bb0c6041afaa2570a4dd943146d31e7d66e4590 (diff) | |
download | bcm5719-llvm-a6e3a823b3aac3cce6e5c0c3a5816c5f0ad2cd93.tar.gz bcm5719-llvm-a6e3a823b3aac3cce6e5c0c3a5816c5f0ad2cd93.zip |
Revert BTF commit series.
The initial patch was not reviewed, and does not have any tests;
it should not have been merged.
This reverts 344395, 344390, 344387, 344385, 344381, 344376,
and 344366.
llvm-svn: 344405
Diffstat (limited to 'llvm/lib/MC/MCDwarf2BTF.h')
-rw-r--r-- | llvm/lib/MC/MCDwarf2BTF.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/llvm/lib/MC/MCDwarf2BTF.h b/llvm/lib/MC/MCDwarf2BTF.h deleted file mode 100644 index 69983374a09..00000000000 --- a/llvm/lib/MC/MCDwarf2BTF.h +++ /dev/null @@ -1,30 +0,0 @@ -//===- MCDwarf2BTF.h ------------------------------------------ *- C++ --*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -#ifndef LLVM_LIB_MC_MCDWARF2BTF_H -#define LLVM_LIB_MC_MCDWARF2BTF_H - -#include "llvm/MC/MCDwarf.h" - -namespace llvm { - -using FileContent = std::pair<std::string, std::vector<std::string>>; - -class MCDwarf2BTF { -public: - static void addFiles(MCObjectStreamer *MCOS, std::string &FileName, - std::vector<FileContent> &Files); - static void - addLines(MCObjectStreamer *MCOS, StringRef &SectionName, - std::vector<FileContent> &Files, - const MCLineSection::MCDwarfLineEntryCollection &LineEntries); - static void addDwarfLineInfo(MCObjectStreamer *MCOS); -}; - -} // namespace llvm -#endif |