mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-24 06:30:19 +00:00
820b147493
lli's remote MCJIT code calls setExecutable just prior to running code. In line with Darwin behaviour this seems to be the place to invalidate any caches needed so that relocations can take effect properly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182213 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
332 B
LLVM
17 lines
332 B
LLVM
; RUN: %lli_mcjit -remote-mcjit -O0 %s
|
|
; XFAIL: mips
|
|
|
|
; Check that a variable is always aligned as specified.
|
|
|
|
@var = global i32 0, align 32
|
|
define i32 @main() {
|
|
%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
|
|
}
|