llvm-project/lld/test/COFF/lto-debug-fission.ll
Haohai Wen 2a631a8fed [lld/COFF] Add /dwodir to enable DWARF fission with LTO
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
2023-07-01 08:59:12 +08:00

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
}