MWCC/includes/compiler/ValueNumbering.h

20 lines
403 B
C

#ifndef COMPILER_VALUENUMBERING_H
#define COMPILER_VALUENUMBERING_H
#include "compiler/common.h"
#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);
#endif