XFAIL the LLI remote JIT tests on Win32.
[oota-llvm.git] / test / ExecutionEngine / OrcMCJIT / remote / test-data-align-remote.ll
1 ; RUN:  %lli -jit-kind=orc-mcjit -remote-mcjit -O0 -mcjit-remote-process=lli-child-target%exeext %s
2 ; XFAIL: win32
3
4 ; Check that a variable is always aligned as specified.
5
6 @var = global i32 0, align 32
7 define i32 @main() nounwind {
8   %addr = ptrtoint i32* @var to i64
9   %mask = and i64 %addr, 31
10   %tst = icmp eq i64 %mask, 0
11   br i1 %tst, label %good, label %bad
12 good:
13   ret i32 0
14 bad:
15   ret i32 1
16 }