mirror of
https://git.wuffs.org/MWCC
synced 2025-12-16 16:37:33 +00:00
12 lines
347 B
C
12 lines
347 B
C
#ifndef COMPILER_INLINEASMREGISTERS_H
|
|
#define COMPILER_INLINEASMREGISTERS_H
|
|
|
|
#include "compiler/common.h"
|
|
#include "compiler/InlineAsm.h"
|
|
|
|
extern void InlineAsm_InitializeRegisters(void);
|
|
extern void InlineAsm_InsertRegister(char *name, RegClass rclass, short num, Object *object);
|
|
extern IARegister *InlineAsm_LookupRegister(char *name);
|
|
|
|
#endif
|