view gen/optimizer.h @ 1592:91af6d05338c

Fix codegen for foreach with ref value being lowered to for.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 13:51:05 +0100
parents d9c5f5a43403
children
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);

// Determines whether the inliner will run in the -O<N> list of passes
bool doInline();
// Determines whether the inliner will be run at all.
bool willInline();

int optLevel();

bool optimize();

#endif