Forgot to commit this file, sorry

This commit is contained in:
Frits van Bommel 2009-03-29 18:50:41 +02:00
parent 6135e4201a
commit aa508e792a

14
gen/optimizer.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef LDC_GEN_OPTIMIZER_H
#define LDC_GEN_OPTIMIZER_H
namespace llvm { class Module; }
bool ldc_optimize_module(llvm::Module* m);
bool doInline();
int optLevel();
bool optimize();
#endif