mirror of
https://git.wuffs.org/MWCC
synced 2025-12-18 09:25:28 +00:00
13 lines
397 B
C
13 lines
397 B
C
#ifndef COMPILER_INLINEASMREGISTERSPPC_H
|
|
#define COMPILER_INLINEASMREGISTERSPPC_H
|
|
|
|
#include "compiler/common.h"
|
|
#include "compiler/InlineAsm.h"
|
|
|
|
extern IARegister *InlineAsm_LookupRegisterPPCName(HashNameNode *name);
|
|
extern IARegister *InlineAsm_LookupRegisterPPC(char *name);
|
|
extern IARegister *InlineAsm_LookupDCRRegister(char *name);
|
|
extern void InlineAsm_InitializeRegistersPPC(void);
|
|
|
|
#endif
|