mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-19 23:23:38 -04:00
c0189221f4
Differential Revision: https://reviews.llvm.org/D68320 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@373426 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
472 B
Plaintext
15 lines
472 B
Plaintext
If the same file is specified more than once as an input file,
|
|
llvm-lib should ignore all but the first occurrence of the file.
|
|
|
|
RUN: rm -rf %t
|
|
RUN: mkdir -p %t
|
|
|
|
RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/foo.o %S/Inputs/a.s
|
|
RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/bar.o %S/Inputs/b.s
|
|
RUN: llvm-lib -out:%t/foo.lib %t/foo.o %t/foo.o %t/bar.o
|
|
|
|
RUN: llvm-ar t %t/foo.lib | FileCheck %s
|
|
CHECK: foo.o
|
|
CHECK-NOT: foo.o
|
|
CHECK: bar.o
|