mirror of https://git.wuffs.org/MWCC
15 lines
384 B
C
15 lines
384 B
C
#ifndef COMPILER_UDUMP_H
|
|
#define COMPILER_UDUMP_H
|
|
|
|
#include "compiler/common.h"
|
|
|
|
extern void SetupDumpIR(void);
|
|
extern void CleanupDumpIR(void);
|
|
extern void DumpIR(Statement *statements, Object *func);
|
|
extern void DumpExpression(ENode *expr, int indent);
|
|
extern void DumpSwitch(SwitchInfo *info);
|
|
extern void DumpType(Type *type);
|
|
extern void DumpStack(ExceptionAction *act);
|
|
|
|
#endif
|