2022-11-20 05:07:22 +00:00
|
|
|
#ifndef COMPILER_VALUENUMBERING_H
|
|
|
|
#define COMPILER_VALUENUMBERING_H
|
|
|
|
|
|
|
|
#include "compiler/common.h"
|
|
|
|
|
2022-12-14 00:16:59 +00:00
|
|
|
#ifdef __MWERKS__
|
|
|
|
#pragma options align=mac68k
|
|
|
|
#endif
|
|
|
|
#ifdef __MWERKS__
|
|
|
|
#pragma options align=reset
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern int removedcommonsubexpressions;
|
|
|
|
extern int nextvaluenumber;
|
|
|
|
|
|
|
|
extern void killmemory(Alias *alias, PCode *newValue);
|
|
|
|
extern void removecommonsubexpressions(Object *proc, int flag);
|
|
|
|
|
2022-11-20 05:07:22 +00:00
|
|
|
#endif
|