39 lines
1.1 KiB
LLVM
39 lines
1.1 KiB
LLVM
; REQUIRES: x86
|
|
; RUN: rm -rf %t && mkdir %t && cd %t
|
|
; RUN: mkdir d e
|
|
; RUN: opt -module-summary %s -o b.bc
|
|
; RUN: mkdir -p %t1 %t2
|
|
; RUN: opt -module-summary %p/Inputs/thin1.ll -o d/coll.o
|
|
; RUN: opt -module-summary %p/Inputs/thin2.ll -o e/coll.o
|
|
|
|
; RUN: llvm-ar rcS d/a.a d/coll.o e/coll.o
|
|
; RUN: ld.lld b.bc d/a.a -o out --save-temps
|
|
; RUN: llvm-nm out | FileCheck %s
|
|
;; d/out.lto.a.a(coll.o at 8).o out.lto.a.a(coll.o at 1916).o
|
|
; RUN: llvm-nm d/out.lto.a.a*at*.o | FileCheck %s --check-prefix=MOD2
|
|
|
|
; Check we handle this case correctly even in presence of --whole-archive.
|
|
; RUN: rm d/out.lto.a.a*at*.o
|
|
; RUN: ld.lld b.bc --whole-archive d/a.a -o out --save-temps
|
|
; RUN: llvm-nm out | FileCheck %s
|
|
; RUN: llvm-nm d/out.lto.a.a*at*.o | FileCheck %s --check-prefix=MOD2
|
|
|
|
; CHECK: T _start
|
|
; CHECK: T blah
|
|
; CHECK: T foo
|
|
|
|
; MOD2-DAG: T foo
|
|
; MOD2-DAG: T blah
|
|
|
|
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-scei-ps4"
|
|
|
|
define i32 @_start() {
|
|
entry:
|
|
%call = call i32 @foo(i32 23)
|
|
%call1 = call i32 @blah(i32 37)
|
|
ret i32 0
|
|
}
|
|
|
|
declare i32 @foo(i32) #1
|
|
declare i32 @blah(i32) #1
|