mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
33 lines
822 B
C++
33 lines
822 B
C++
//===-- ir/irmodule.h - Codegen state for top-level D modules ---*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
//
|
||
// Represents the state of a D module on its way through code generation. Also
|
||
// see the TODO in gen/module.cpp – parts of IRState really belong here.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#ifndef LDC_IR_IRMODULE_H
|
||
#define LDC_IR_IRMODULE_H
|
||
|
||
#include "ir/ir.h"
|
||
|
||
struct Module;
|
||
|
||
struct IrModule : IrBase
|
||
{
|
||
IrModule(Module* module, const char* srcfilename);
|
||
virtual ~IrModule();
|
||
|
||
Module* M;
|
||
|
||
LLGlobalVariable* fileName;
|
||
};
|
||
|
||
#endif
|