Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / tools / llvm-lib / use-paths.test
blob971c216127e6ffc6bb7fba42a04f7e4ab669919b
1 llvm-lib should behave like "link.exe /lib" and use relative paths to describe
2 archive members.
4 First, get in a clean working directory.
5 RUN: rm -rf %t && mkdir -p %t && cd %t
7 Make foo/a.obj and foo/b.obj.
8 RUN: mkdir foo
9 RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o foo/a.obj %S/Inputs/a.s
10 RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o foo/b.obj %S/Inputs/b.s
12 RUN: llvm-lib -out:foo.lib foo/a.obj foo/b.obj
13 RUN: llvm-ar t foo.lib | FileCheck %s
15 FIXME: We should probably use backslashes on Windows to better match MSVC tools.
16 CHECK: foo/a.obj
17 CHECK: foo/b.obj
19 Do it again with absolute paths and see that we get something.
20 RUN: llvm-lib -out:foo.lib %t/foo/a.obj %t/foo/b.obj
21 RUN: llvm-ar t foo.lib | FileCheck %s --check-prefix=ABS
23 ABS: {{.*}}/foo/a.obj
24 ABS: {{.*}}/foo/b.obj