Jacek Caban 350c89fa75 [llvm-lib] Write object files in reversed order.
This isn't strictly needed, but this matches how MSVC lib.exe writes to
archives, so this makes llvm-lib more compatible and simplifies comparing
output between tools.

Reviewed By: hans

Differential Revision: https://reviews.llvm.org/D143536
2023-02-10 00:51:07 +02:00

17 lines
609 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-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/abc.o %S/Inputs/abc.s
RUN: llvm-lib -out:%t/foo.lib %t/foo.o %t/foo.o %t/abc.o %t/bar.o %t/foo.o %t/foo.o
RUN: llvm-ar t %t/foo.lib | FileCheck %s
CHECK: bar.o
CHECK-NEXT: abc.o
CHECK-NEXT: foo.o
CHECK-NOT: foo.o