Files
clang-p2996/llvm/test/ExecutionEngine/RuntimeDyld/X86/coff-alignment.ll
Muhammad Omair Javaid cd8b36190d [llvm] XFAIL X86 tests failing on AArch64/Windows
coff-alignment.ll and merge-equivalent-ranges.ll depend on X86 target.
This patch marks them as XFAIL for AArch64/Windows target.
2023-01-03 16:52:29 +04:00

11 lines
243 B
LLVM

; XFAIL: target=aarch64-pc-windows-{{.*}}
; REQUIRES: system-windows
; RUN: opt -mtriple=x86_64-pc-win32-coff %s -o - | lli
@o = common global i32 0, align 4
define i32 @main() {
%patatino = load i32, ptr @o, align 4
ret i32 %patatino
}