mirror of
https://github.com/Museum-of-Art-and-Digital-Entertainment/macross.git
synced 2024-11-26 22:51:04 +00:00
12 lines
410 B
C
12 lines
410 B
C
#ifndef FIXUPS_H_
|
|
#define FIXUPS_H_
|
|
|
|
#include "macrossTypes.h"
|
|
|
|
expressionType *generateFixupExpression(expressionType *expression);
|
|
expressionType *duplicateExpressionForFixup(expressionType *expression, bool isTopLevel, bool isSpecialFunctionOperand);
|
|
functionCallTermType *duplicateFunctionCall(functionCallTermType *functionCall);
|
|
expressionType *duplicateArrayReference(arrayTermType *arrayTerm);
|
|
|
|
#endif
|