mirror of https://git.wuffs.org/MWCC
10 lines
173 B
C
10 lines
173 B
C
|
#ifndef COMPILER_IROPTIMIZER_H
|
||
|
#define COMPILER_IROPTIMIZER_H
|
||
|
|
||
|
#include "compiler/common.h"
|
||
|
|
||
|
// do me
|
||
|
extern Statement *IRO_Optimizer(Object *obj, Statement *stmt);
|
||
|
|
||
|
#endif
|