llvm-project/llvm/test/ExecutionEngine/MCJIT/remote/test-data-align-remote.ll
Paul Robinson 7e4218bfce [MCJIT] Convert tests to check 'target=...'
Part of the project to eliminate special handling for triples in lit
expressions.
2022-12-15 14:08:36 -08:00

19 lines
565 B
LLVM

; RUN: %lli -jit-kind=mcjit -remote-mcjit -O0 -mcjit-remote-process=lli-child-target%exeext %s
; XFAIL: target={{.*-windows-(gnu|msvc)}}
; UNSUPPORTED: target=powerpc64-unknown-linux-gnu
; Remove UNSUPPORTED for powerpc64-unknown-linux-gnu if problem caused by r266663 is fixed
; Check that a variable is always aligned as specified.
@var = global i32 0, align 32
define i32 @main() nounwind {
%addr = ptrtoint ptr @var to i64
%mask = and i64 %addr, 31
%tst = icmp eq i64 %mask, 0
br i1 %tst, label %good, label %bad
good:
ret i32 0
bad:
ret i32 1
}