view gen/passes/Passes.h @ 1286:23b23b74e326

Remove calls to some runtime functions if their results are unused
author Frits van Bommel <fvbommel wxs.nl>
date Sat, 02 May 2009 11:58:50 +0200
parents 91d9386d4a5a
children 6c8af78364f5
line wrap: on
line source

#ifndef LDC_PASSES_H
#define LDC_PASSES_H

namespace llvm {
    class FunctionPass;
}

// Performs simplifications on runtime calls.
llvm::FunctionPass* createSimplifyDRuntimeCalls();
llvm::FunctionPass* createGarbageCollect2Stack();


#endif