mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
1. Main include corresponding to .cpp file, if any. 2. DMD and LDC includes. 3. LLVM includes. 4. System includes. Also updated a few include guards to match the default format.
24 lines
755 B
C++
24 lines
755 B
C++
//===-- gen/typinf.h - TypeInfo declaration codegen -------------*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
//
|
||
// Codegen for the TypeInfo types/constants required by the D run-time type
|
||
// information system.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#ifndef LDC_GEN_TYPEINF_H
|
||
#define LDC_GEN_TYPEINF_H
|
||
|
||
struct TypeInfoDeclaration;
|
||
void DtoResolveTypeInfo(TypeInfoDeclaration* tid);
|
||
void DtoDeclareTypeInfo(TypeInfoDeclaration* tid);
|
||
void DtoConstInitTypeInfo(TypeInfoDeclaration* tid);
|
||
|
||
#endif
|