diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2013-04-08 18:41:23 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2013-04-08 18:41:23 +0000 |
| commit | 4a16efa3e43e35f0cc9efe3a67f620f0017c3d36 (patch) | |
| tree | 06099edc18d30894081a822b756f117cbe0b8207 /test/ExecutionEngine/MCJIT/test-data-align-remote.ll | |
| parent | 482e7bddf617ae804dc47133cb07eb4aa81e45de (diff) | |
Notes
Diffstat (limited to 'test/ExecutionEngine/MCJIT/test-data-align-remote.ll')
| -rw-r--r-- | test/ExecutionEngine/MCJIT/test-data-align-remote.ll | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/ExecutionEngine/MCJIT/test-data-align-remote.ll b/test/ExecutionEngine/MCJIT/test-data-align-remote.ll new file mode 100644 index 000000000000..9daf1684de81 --- /dev/null +++ b/test/ExecutionEngine/MCJIT/test-data-align-remote.ll @@ -0,0 +1,16 @@ +; RUN: %lli_mcjit -remote-mcjit -O0 %s +; XFAIL: armv7, 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 +} |
