Files
ldc/ir/irmodule.h
David Nadlinger beed5c3044 Get rid of empty IrBase class.
It isn't useful in any way now that the GC is out of the
picture, and the existance of a "dummy" toChars() method is
annoying when debugging.
2013-05-15 20:28:53 +02:00

33 lines
813 B
C++
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//===-- 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
{
IrModule(Module* module, const char* srcfilename);
virtual ~IrModule();
Module* M;
LLGlobalVariable* fileName;
};
#endif