Skip to content

Commit 1ed0df2

Browse files
author
Amirhossein Pashaeehir
committed
[TEMP] move unwind table to where it should be, the layering is not correct
1 parent 682dcae commit 1ed0df2

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
#include "llvm/ADT/SmallString.h"
1313
#include "llvm/ADT/iterator.h"
14-
#include "llvm/DebugInfo/DWARF/DWARFUnwindTable.h"
1514
#include "llvm/DebugInfo/DWARF/LowLevel/DWARFCFIProgram.h"
1615
#include "llvm/DebugInfo/DWARF/LowLevel/DWARFExpression.h"
16+
#include "llvm/DebugInfo/DWARF/LowLevel/DWARFUnwindTable.h"
1717
#include "llvm/Support/Compiler.h"
1818
#include "llvm/Support/Error.h"
1919
#include "llvm/TargetParser/Triple.h"

llvm/lib/DebugInfo/DWARF/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ add_llvm_component_library(LLVMDebugInfoDWARF
2828
DWARFTypeUnit.cpp
2929
DWARFUnitIndex.cpp
3030
DWARFUnit.cpp
31-
DWARFUnwindTable.cpp
3231
DWARFVerifier.cpp
3332

3433
ADDITIONAL_HEADER_DIRS

llvm/lib/DebugInfo/DWARF/LowLevel/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
add_llvm_component_library(LLVMDebugInfoDWARFLowLevel
22
DWARFCFIProgram.cpp
33
DWARFExpression.cpp
4+
DWARFUnwindTable.cpp
45

56
ADDITIONAL_HEADER_DIRS
67
${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo/DWARF/LowLevel

llvm/lib/DebugInfo/DWARF/DWARFUnwindTable.cpp renamed to llvm/lib/DebugInfo/DWARF/LowLevel/DWARFUnwindTable.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include "llvm/DebugInfo/DWARF/DWARFUnwindTable.h"
9+
#include "llvm/DebugInfo/DWARF/LowLevel/DWARFUnwindTable.h"
1010
#include "llvm/DebugInfo/DIContext.h"
1111
#include "llvm/DebugInfo/DWARF/DWARFExpressionPrinter.h"
1212
#include "llvm/Support/Errc.h"

0 commit comments

Comments
 (0)