diff options
author | Alexey Lapshin <a.v.lapshin@mail.ru> | 2019-12-20 19:23:31 +0300 |
---|---|---|
committer | Alexey Lapshin <a.v.lapshin@mail.ru> | 2020-01-08 14:15:31 +0300 |
commit | 1cf11a4c67a15ab5493ef424c898accf49012caa (patch) | |
tree | 725e9007d55d84e3ad27af22222ebbcda6ef6043 /llvm/lib/CodeGen | |
parent | 96d2d96b03ff590867cd6578eb7f6d32770cbbf0 (diff) | |
download | bcm5719-llvm-1cf11a4c67a15ab5493ef424c898accf49012caa.tar.gz bcm5719-llvm-1cf11a4c67a15ab5493ef424c898accf49012caa.zip |
[Dsymutil][Debuginfo][NFC] Reland: Refactor dsymutil to separate DWARF optimizing part. #2.
Summary:
This patch relands D71271. The problem with D71271 is that it has cyclic dependency:
CodeGen->AsmPrinter->DebugInfoDWARF->CodeGen. To avoid cyclic dependency this patch
puts implementation for DWARFOptimizer into separate library: lib/DWARFLinker.
Thus the difference between this patch and D71271 is in that DWARFOptimizer renamed into
DWARFLinker and it`s files are put into lib/DWARFLinker.
Reviewers: JDevlieghere, friss, dblaikie, aprantl
Reviewed By: JDevlieghere
Subscribers: thegameg, merge_guards_bot, probinson, mgorny, hiraditya, llvm-commits
Tags: #llvm, #debug-info
Differential Revision: https://reviews.llvm.org/D71839
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/NonRelocatableStringpool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/NonRelocatableStringpool.cpp b/llvm/lib/CodeGen/NonRelocatableStringpool.cpp index d28399f239c..9ed3471c0fc 100644 --- a/llvm/lib/CodeGen/NonRelocatableStringpool.cpp +++ b/llvm/lib/CodeGen/NonRelocatableStringpool.cpp @@ -1,4 +1,4 @@ -//===-- llvm/CodeGen/NonRelocatableStringpool.cpp - A simple stringpool --===// +//===-- NonRelocatableStringpool.cpp --------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. |