[Alignment][NFC] Instructions::getLoadStoreAlignment
[llvm-complete.git] / test / tools / llvm-lib / duplicate.test
blob3c503ca7f58f25d341c8742439afdbef84592ba9
1 If the same file is specified more than once as an input file,
2 llvm-lib should ignore all but the first occurrence of the file.
4 RUN: rm -rf %t
5 RUN: mkdir -p %t
7 RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/foo.o %S/Inputs/a.s
8 RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/bar.o %S/Inputs/b.s
9 RUN: llvm-lib -out:%t/foo.lib %t/foo.o %t/foo.o %t/bar.o
11 RUN: llvm-ar t %t/foo.lib | FileCheck %s
12 CHECK: foo.o
13 CHECK-NOT: foo.o
14 CHECK: bar.o