mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-19 22:33:13 +01:00
This corresponds to DMD commit a913ce4bc59a94a022a27e390fc841f4aededffb. Doesn't build Phobos yet.
23 lines
703 B
C++
23 lines
703 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
|
||
|
||
class TypeInfoDeclaration;
|
||
void DtoResolveTypeInfo(TypeInfoDeclaration* tid);
|
||
void DtoConstInitTypeInfo(TypeInfoDeclaration* tid);
|
||
|
||
#endif
|