mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-04 09:00:33 +03:00
15 lines
196 B
C++
15 lines
196 B
C++
#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
|
|
|