Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / MachO / invalid / stub-link.s
blobdc07a96c84ba07888b6e7e124519a4271ff8e217
1 ## FIXME: This test seems to be failing on some Google Mac buildbots for
2 ## unclear reasons, so it's disabled for now. See D85404 for details.
3 # UNSUPPORTED: target={{.*}}-darwin{{.*}}
4 # REQUIRES: target=x86{{.*}}
6 # RUN: mkdir -p %t
8 # RUN: llvm-mc -filetype obj -triple x86_64-apple-ios %s -o %t/test.o
9 # RUN: not %no-arg-lld -arch x86_64 -platform_version ios 14.0 15.0 -o %t/test \
10 # RUN: -syslibroot %S/../Inputs/iPhoneSimulator.sdk -lSystem %t/test.o 2>&1 | FileCheck %s
12 # CHECK-DAG: error: undefined symbol: __cache_handle_memory_pressure_event
13 # CHECK-DAG: error: undefined symbol: _from_non_reexported_tapi_dylib
15 .section __TEXT,__text
16 .global _main
18 _main:
19 movq __cache_handle_memory_pressure_event@GOTPCREL(%rip), %rax
20 movq _from_non_reexported_tapi_dylib@GOTPCREL(%rip), %rax
21 ret