view gen/optimizer.h @ 1494:b243e28f63d4

Generate less dead code by deleting unreachable blocks at the end of functions (which would otherwise appear if a function ends with a return, for example).
author Frits van Bommel <fvbommel wxs.nl>
date Fri, 12 Jun 2009 16:41:38 +0200
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