[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / lld / test / MachO / link-csu-object.s
bloba36e50a8901bd0cacc835190a134daf26c448744
1 # REQUIRES: x86
2 # RUN: mkdir -p %t
3 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %p/Inputs/libhello.s -o %t/hello.o
4 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t/main.o
5 # RUN: %lld -L %t %t/main.o -lhello.o -o %t/a.out
6 # RUN: llvm-nm %t/a.out | FileCheck %s
8 # CHECK: _main
9 # CHECK: _print_hello
11 .globl _main
12 _main:
13 call _print_hello
14 ret