1; REQUIRES: x86
2
3; Basic ThinLTO tests.
4; RUN: opt -module-summary %s -o %t1.o
5; RUN: opt -module-summary %p/Inputs/thinlto.ll -o %t2.o
6; RUN: opt -module-summary %p/Inputs/thinlto_empty.ll -o %t3.o
7
8; Ensure lld writes linked files to linked objects file
9; RUN: ld.lld --plugin-opt=thinlto-index-only=%t.idx -shared %t1.o %t2.o %t3.o -o /dev/null
10; RUN: FileCheck %s < %t.idx
11; CHECK: {{.*}}thinlto-index-file.ll.tmp1.o
12; CHECK: {{.*}}thinlto-index-file.ll.tmp2.o
13; CHECK: {{.*}}thinlto-index-file.ll.tmp3.o
14
15; Check that this also works without the --plugin-opt= prefix.
16; RUN: ld.lld --thinlto-index-only=%t.idx -shared %t1.o %t2.o %t3.o -o /dev/null
17; RUN: FileCheck %s < %t.idx
18
19target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
20target triple = "x86_64-unknown-linux-gnu"
21
22declare void @g(...)
23
24define void @f() {
25entry:
26  call void (...) @g()
27  ret void
28}
29