comparison gen/optimizer.h @ 1173:b0f9652f31de

Forgot to commit this file, sorry
author Frits van Bommel <fvbommel wxs.nl>
date Sun, 29 Mar 2009 18:50:41 +0200
parents
children 0b26cfb2d445
comparison
equal deleted inserted replaced
1172:b3887714b735 1173:b0f9652f31de
1 #ifndef LDC_GEN_OPTIMIZER_H
2 #define LDC_GEN_OPTIMIZER_H
3
4 namespace llvm { class Module; }
5
6 bool ldc_optimize_module(llvm::Module* m);
7
8 bool doInline();
9
10 int optLevel();
11
12 bool optimize();
13
14 #endif