Mercurial > hg > Members > tobaru > cbc > CbC_llvm
view include/llvm/ExecutionEngine/Interpreter.h @ 128:c347d3398279 default tip
fix
author | mir3636 |
---|---|
date | Wed, 06 Dec 2017 14:37:17 +0900 |
parents | 7d135dc70f03 |
children |
line wrap: on
line source
//===-- Interpreter.h - Abstract Execution Engine Interface -----*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file forces the interpreter to link in on certain operating systems. // (Windows). // //===----------------------------------------------------------------------===// #ifndef LLVM_EXECUTIONENGINE_INTERPRETER_H #define LLVM_EXECUTIONENGINE_INTERPRETER_H #include "llvm/ExecutionEngine/ExecutionEngine.h" extern "C" void LLVMLinkInInterpreter(); namespace { struct ForceInterpreterLinking { ForceInterpreterLinking() { LLVMLinkInInterpreter(); } } ForceInterpreterLinking; } #endif