aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/OrcMCJIT/remote/test-data-align-remote.ll
blob: 95c9b825a8d3b47432292ae4254c37ffa845b4a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN:  %lli -jit-kind=orc-mcjit -remote-mcjit -O0 -mcjit-remote-process=lli-child-target%exeext %s

; Check that a variable is always aligned as specified.

@var = global i32 0, align 32
define i32 @main() nounwind {
  %addr = ptrtoint i32* @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
}