diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-10-27 10:22:52 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-10-27 10:22:52 +0000 |
commit | 5bb014371ef8b1b082c517768dc7c75e1e8b9ec5 (patch) | |
tree | efc927dbfebcf771c3a12140be9f277e2705ba20 /llvm/test/ExecutionEngine/MCJIT/remote/cross-module-a.ll | |
parent | 199c8235551c37b8a51a44c080f7fae1b7ab8884 (diff) | |
download | bcm5719-llvm-5bb014371ef8b1b082c517768dc7c75e1e8b9ec5.tar.gz bcm5719-llvm-5bb014371ef8b1b082c517768dc7c75e1e8b9ec5.zip |
MCJIT-remote: __main should be resolved in child context.
- Mark tests as XFAIL:cygming in test/ExecutionEngine/MCJIT/remote.
Rather to suppress them, I'd like to leave them running as XFAIL.
- Revert r193472. RecordMemoryManager no longer resolves __main on cygming.
There are a couple of issues.
- X86 Codegen emits "call __main" in @main for targeting cygming.
It is useless in JIT. FYI, tests are passing when emitting __main is disabled.
- Current remote JIT does not resolve any symbols in child context.
FIXME: __main should be disabled, or remote JIT should resolve __main.
llvm-svn: 193498
Diffstat (limited to 'llvm/test/ExecutionEngine/MCJIT/remote/cross-module-a.ll')
-rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/remote/cross-module-a.ll | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/remote/cross-module-a.ll b/llvm/test/ExecutionEngine/MCJIT/remote/cross-module-a.ll index 1e55d2d6a28..97f4edaf22e 100644 --- a/llvm/test/ExecutionEngine/MCJIT/remote/cross-module-a.ll +++ b/llvm/test/ExecutionEngine/MCJIT/remote/cross-module-a.ll @@ -1,5 +1,8 @@ ; RUN: %lli_mcjit -extra-modules=%p/cross-module-b.ir -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null +; This fails because __main is not resolved in remote mcjit. +; XFAIL: cygwin,mingw32 + declare i32 @FB() define i32 @FA() { |