view 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
line wrap: on
line source

#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