[memprof] Remove an unused using directive (#117004)
[llvm-project.git] / lld / test / ELF / lto / thinlto-debug-fission.ll
blob3b471dc20e11da25eb7db54cff4f5be633a67e28
1 ; REQUIRES: x86
3 ; RUN: opt %s -o %t1.o
4 ; RUN: rm -rf %t.dir
6 ; Test to ensure that --plugin-opt=dwo_dir=$DIR creates .dwo files under $DIR
7 ; RUN: ld.lld --plugin-opt=dwo_dir=%t.dir -shared %t1.o -o /dev/null
8 ; RUN: llvm-readobj -h %t.dir/0.dwo | FileCheck %s
10 ; CHECK: Format: elf64-x86-64
12 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
13 target triple = "x86_64-unknown-linux-gnu"
15 declare void @g(...)
17 define void @f() {
18 entry:
19   call void (...) @g()
20   ret void