
* `tools/llvm-objcopy/MachO/update-section-object.test` was failing on Windows since the input file (`macho_sections.s`) might be checked out with the wrong line ending, resulting in difference in the size of sections being checked. * Removed the check for Windows in `AArch64Arm64ECCallLowering`: when `llc` is run without an explicit target, the module's target triple is unknown so this assert fires. * Expect `llvm/test/CodeGen/Generic/allow-check.ll` to fail for Arm64EC: Global ISel is not supported.
34 lines
966 B
LLVM
34 lines
966 B
LLVM
; Avoid `!DL->isLittleEndian() && !CLI->enableBigEndian()` missmatch on PPC64BE.
|
|
; REQUIRES: target-byteorder-little-endian
|
|
|
|
; -global-isel=1 is unsupported.
|
|
; XFAIL: target=loongarch{{.*}}
|
|
; XFAIL: target=nvptx{{.*}}
|
|
; XFAIL: target=sparc{{.*}}
|
|
; XFAIL: target=hexagon-{{.*}}
|
|
; XFAIL: target=arm64ec-{{.*}}
|
|
|
|
; RUN: llc < %s -O3 -global-isel=0 -fast-isel=0
|
|
; RUN: llc < %s -O3 -global-isel=1 -fast-isel=0
|
|
; RUN: llc < %s -O3 -global-isel=0 -fast-isel=1
|
|
|
|
; RUN: llc < %s -O0 -global-isel=0 -fast-isel=0
|
|
; RUN: llc < %s -O0 -global-isel=1 -fast-isel=0
|
|
; RUN: llc < %s -O0 -global-isel=0 -fast-isel=1
|
|
|
|
define i1 @test_runtime() local_unnamed_addr {
|
|
entry:
|
|
%allow = call i1 @llvm.allow.runtime.check(metadata !"test_check")
|
|
ret i1 %allow
|
|
}
|
|
|
|
declare i1 @llvm.allow.runtime.check(metadata) nounwind
|
|
|
|
define i1 @test_ubsan() local_unnamed_addr {
|
|
entry:
|
|
%allow = call i1 @llvm.allow.ubsan.check(i8 7)
|
|
ret i1 %allow
|
|
}
|
|
|
|
declare i1 @llvm.allow.ubsan.check(i8) nounwind
|