mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-07 11:26:02 +03:00

New array literal support New array ~= operator support (for single element) New with statement support More...
18 lines
391 B
C
18 lines
391 B
C
#ifndef GEN_LLVM_H
|
|
#define GEN_LLVM_H
|
|
|
|
#include "llvm/Type.h"
|
|
#include "llvm/DerivedTypes.h"
|
|
#include "llvm/Constants.h"
|
|
#include "llvm/IntrinsicInst.h"
|
|
#include "llvm/CallingConv.h"
|
|
#include "llvm/GlobalVariable.h"
|
|
#include "llvm/Function.h"
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Target/TargetData.h"
|
|
|
|
#include "llvm/Support/LLVMBuilder.h"
|
|
using llvm::LLVMBuilder;
|
|
|
|
#endif // GEN_LLVM_H
|