mirror of
https://git.wuffs.org/MWCC
synced 2025-07-23 23:25:53 +00:00
11 lines
256 B
C
11 lines
256 B
C
#ifndef COMPILER_PEEPHOLE_H
|
|
#define COMPILER_PEEPHOLE_H
|
|
|
|
#include "compiler/common.h"
|
|
|
|
extern void peepholeoptimizeforward(Object *func);
|
|
extern void peepholemergeblocks(Object *func, Boolean flag);
|
|
extern void peepholeoptimizepcode(Object *func);
|
|
|
|
#endif
|