[clang-tidy][use-internal-linkage]fix false positives for global overloaded operator...
[llvm-project.git] / lld / test / COFF / import_weak_alias.test
blobae1817c67a20acbd64911d32cf80708d25a87484
1 # REQUIRES: x86
3 # RUN: split-file %s %t.dir
4 # RUN: llvm-mc --filetype=obj -triple=x86_64-windows-msvc %t.dir/foo.s -o %t.foo.obj
5 # RUN: llvm-mc --filetype=obj -triple=x86_64-windows-msvc %t.dir/qux.s -o %t.qux.obj
6 # RUN: lld-link %t.qux.obj %t.foo.obj -out:%t.dll -dll
8 #--- foo.s
9 .text
10 bar:
11   ret
13 .weak foo
14 .set foo, bar
15 #--- qux.s
16 .text
17 .global _DllMainCRTStartup
18 _DllMainCRTStartup:
19   call *__imp_foo(%rip)
20   ret