mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-03 16:41:06 +03:00

This corresponds to DMD commit a913ce4bc59a94a022a27e390fc841f4aededffb. Doesn't build Phobos yet.
34 lines
841 B
C++
34 lines
841 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
|
||
|
||
class Module;
|
||
namespace llvm
|
||
{
|
||
class GlobalVariable;
|
||
}
|
||
|
||
struct IrModule
|
||
{
|
||
IrModule(Module* module, const char* srcfilename);
|
||
virtual ~IrModule();
|
||
|
||
Module* M;
|
||
|
||
llvm::GlobalVariable* fileName;
|
||
};
|
||
|
||
#endif
|