summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2016-02-10 01:02:33 +0000
committerLang Hames <lhames@gmail.com>2016-02-10 01:02:33 +0000
commitdb7e3d1e5c95f0045c288c742b6b113b8b8d361c (patch)
treed93103dd1629e675d40c1850eec001dc950d16ad /test/ExecutionEngine
parent7c9f178cf7068dcad3bb012718a9bd91e9fef078 (diff)
[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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@260338 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r--test/ExecutionEngine/OrcLazy/lit.local.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ExecutionEngine/OrcLazy/lit.local.cfg b/test/ExecutionEngine/OrcLazy/lit.local.cfg
index bf63c4f73ed..aa213e4ca20 100644
--- a/test/ExecutionEngine/OrcLazy/lit.local.cfg
+++ b/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