mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-06 19:06:02 +03:00
rename compiler files
This commit is contained in:
parent
e53f7f4be1
commit
5426ffbd3d
5 changed files with 8 additions and 8 deletions
|
@ -19,7 +19,7 @@
|
|||
#include "gen/logger.h"
|
||||
#include "gen/modules.h"
|
||||
#include "gen/runtime.h"
|
||||
#include "gen/runtimecompile.h"
|
||||
#include "gen/dynamiccompile.h"
|
||||
#include "llvm/Support/FileSystem.h"
|
||||
#include "llvm/Support/Path.h"
|
||||
#include "llvm/Support/ToolOutputFile.h"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "gen/runtimecompile.h"
|
||||
#include "gen/dynamiccompile.h"
|
||||
|
||||
#if defined(LDC_DYNAMIC_COMPILE)
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
//===-- gen/runtimecompile.h - jit support ----------------------*- C++ -*-===//
|
||||
//===-- gen/dynamiccompile.h - jit support ----------------------*- C++ -*-===//
|
||||
//
|
||||
// LDC – the LLVM D compiler
|
||||
//
|
||||
|
@ -11,8 +11,8 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LDC_GEN_RUNTIMECOMPILE_H
|
||||
#define LDC_GEN_RUNTIMECOMPILE_H
|
||||
#ifndef LDC_GEN_DYNAMICCOMPILE_H
|
||||
#define LDC_GEN_DYNAMICCOMPILE_H
|
||||
|
||||
struct IRState;
|
||||
struct IrFunction;
|
||||
|
@ -23,4 +23,4 @@ void declareRuntimeCompiledFunction(IRState *irs, IrFunction *func);
|
|||
void defineRuntimeCompiledFunction(IRState *irs, IrFunction *func);
|
||||
void addRuntimeCompiledVar(IRState *irs, IrGlobal *var);
|
||||
|
||||
#endif // LDC_GEN_RUNTIMECOMPILE_H
|
||||
#endif // LDC_GEN_DYNAMICCOMPILE_H
|
|
@ -39,7 +39,7 @@
|
|||
#include "gen/pgo.h"
|
||||
#include "gen/pragma.h"
|
||||
#include "gen/runtime.h"
|
||||
#include "gen/runtimecompile.h"
|
||||
#include "gen/dynamiccompile.h"
|
||||
#include "gen/scope_exit.h"
|
||||
#include "gen/tollvm.h"
|
||||
#include "gen/uda.h"
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
#include <stack>
|
||||
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "gen/runtimecompile.h"
|
||||
#include "gen/dynamiccompile.h"
|
||||
|
||||
llvm::cl::opt<llvm::GlobalVariable::ThreadLocalMode> clThreadModel(
|
||||
"fthread-model", llvm::cl::ZeroOrMore, llvm::cl::desc("Thread model"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue