Get JIT/Interpreter working on Windows again.
[oota-llvm.git] / include / llvm / ExecutionEngine / JIT.h
1 //===- ExecutionEngine.h - Abstract Execution Engine Interface --*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Jeff Cohen and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file forces the interpreter to link in on certain operating systems.
11 // (Windows).
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef EXECUTION_ENGINE_JIT_H
16 #define EXECUTION_ENGINE_JIT_H
17
18 #include "llvm/ExecutionEngine/ExecutionEngine.h"
19
20 namespace llvm {
21   extern void LinkInJIT();
22 }
23
24 namespace {
25   struct ForceJITLinking {
26     ForceJITLinking() {
27       // We must reference the passes in such a way that compilers will not
28       // delete it all as dead code, even with whole program optimization,
29       // yet is effectively a NO-OP. As the compiler isn't smart enough
30       // to know that getenv() never returns -1, this will do the job.
31       if (std::getenv("bar") != (char*) -1)
32         return;
33
34       llvm::LinkInJIT();
35     }
36   } ForceJITLinking;
37 }
38
39 #endif