mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-08 20:06:03 +03:00
License headers and style fixes
This commit is contained in:
parent
e8ba51fb84
commit
abcfc7a451
15 changed files with 192 additions and 30 deletions
|
@ -1,9 +1,21 @@
|
|||
//===-- context.h - jit support ---------------------------------*- C++ -*-===//
|
||||
//
|
||||
// LDC – the LLVM D compiler
|
||||
//
|
||||
// This file is distributed under the Boost Software License. See the LICENSE
|
||||
// file for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// Jit compilation context, must be in sync with runtimecompile.d.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef CONTEXT_H
|
||||
#define CONTEXT_H
|
||||
|
||||
#include <cstddef> //size_t
|
||||
|
||||
// must be synchronized with D source
|
||||
enum class DumpStage : int {
|
||||
OriginalModule = 0,
|
||||
MergedModule = 1,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue