mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 15:06:37 +00:00

This patch added /dwodir to lld/COFF which is equivalent to lld/ELF option -plugin-opt=dwo_dir=. This option tells LTO backend to create dwo directory and files and all dwo files will be in it. Otherwise all dwarf sections will be embeded into image even if -gsplit-dwarf is specified when using LTO. Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D154070
19 lines
451 B
LLVM
19 lines
451 B
LLVM
; REQUIRES: x86
|
|
|
|
; RUN: opt %s -o %t1.o
|
|
; RUN: rm -rf %t.dir
|
|
|
|
; Test to ensure that -dwodir:$DIR creates .dwo files under $DIR
|
|
; RUN: lld-link -dwodir:%t.dir -noentry -dll %t1.o -out:%t.dll
|
|
; RUN: llvm-readobj -h %t.dir/0.dwo | FileCheck %s
|
|
|
|
; CHECK: Format: COFF-x86-64
|
|
|
|
target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-windows-msvc"
|
|
|
|
define void @f() {
|
|
entry:
|
|
ret void
|
|
}
|