[MCJIT] Mark test-global-ctors as UNSUPPORTED on Darwin, rather than XFAIL.

MachO doesn't have a '.text.startup' -- this is just plain unsupported.
This commit is contained in:
Lang Hames 2021-09-26 15:10:33 -07:00
parent 43c543aab7
commit 9e7fdcbafe
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
; RUN: %lli -jit-kind=mcjit %s > /dev/null
; RUN: %lli %s > /dev/null
; XFAIL: darwin
; UNSUPPORTED: darwin
@var = global i32 1, align 4
@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @ctor_func, i8* null }]
@llvm.global_dtors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @dtor_func, i8* null }]