diff options
| author | Lang Hames <lhames@gmail.com> | 2016-02-10 01:02:33 +0000 |
|---|---|---|
| committer | Lang Hames <lhames@gmail.com> | 2016-02-10 01:02:33 +0000 |
| commit | 4f8194e81d72bab350480fce872e0af115a4dcbf (patch) | |
| tree | dbddd750ce68b36e45b589ec568662ad5f46c0e0 /llvm/test | |
| parent | 5fd17ab1b093f6b59aabb27f6c2c2278e65c2707 (diff) | |
| download | bcm5719-llvm-4f8194e81d72bab350480fce872e0af115a4dcbf.tar.gz bcm5719-llvm-4f8194e81d72bab350480fce872e0af115a4dcbf.zip | |
[Orc] Add lazy-JITting support for i386.
This patch adds a new class, OrcI386, which contains the hooks needed to
support lazy-JITing on i386 (currently only for Pentium 2 or above, as the JIT
re-entry code uses the FXSAVE/FXRSTOR instructions).
Support for i386 is enabled in the LLI lazy JIT and the Orc C API, and
regression and unit tests are enabled for this architecture.
llvm-svn: 260338
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg b/llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg index bf63c4f73ed..aa213e4ca20 100644 --- a/llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg +++ b/llvm/test/ExecutionEngine/OrcLazy/lit.local.cfg @@ -1,2 +1,2 @@ -if config.root.host_arch not in ['x86_64']: +if config.root.host_arch not in ['i386', 'x86', 'x86_64', 'AMD64']: config.unsupported = True |

