mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-01 15:40:55 +03:00

Incl. functional changes, especially wrt. preserved paths for object files (previously only when creating a static/dynamic library, now only if specifying the -op switch).
15 lines
495 B
C++
15 lines
495 B
C++
//===-- gen/modules.h - Entry points for D module codegen -------*- C++ -*-===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
struct IRState;
|
||
class Module;
|
||
|
||
/// Generates code for the contents of module m into the LLVM module associated
|
||
/// with irs.
|
||
void codegenModule(IRState *irs, Module *m);
|