diff options
| author | Ash Wolf <ninji@wuffs.org> | 2023-01-11 23:26:04 +0000 | 
|---|---|---|
| committer | Ash Wolf <ninji@wuffs.org> | 2023-01-11 23:26:04 +0000 | 
| commit | 54bb1363a26b6a52cf1a8ecf1f16f76e9920956f (patch) | |
| tree | 53644f3d0a9b24a10275ba723f6e7e43aee00ec9 /includes/compiler/IroFlowgraph.h | |
| parent | 0bec4f557a96e1a40437cf5af20cc78a5eec8a63 (diff) | |
| download | MWCC-54bb1363a26b6a52cf1a8ecf1f16f76e9920956f.tar.gz MWCC-54bb1363a26b6a52cf1a8ecf1f16f76e9920956f.zip  | |
get it to compile with clang
Diffstat (limited to '')
| -rw-r--r-- | includes/compiler/IroFlowgraph.h | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/compiler/IroFlowgraph.h b/includes/compiler/IroFlowgraph.h index 98b6110..90e696c 100644 --- a/includes/compiler/IroFlowgraph.h +++ b/includes/compiler/IroFlowgraph.h @@ -62,20 +62,20 @@ extern void IRO_BuildFlowgraph(IROLinear *linear);  extern IRONode *IRO_NewFlowGraphNode(void);  extern IRONode *IRO_MergeFlowGraphNodes(IRONode *a, IRONode *b); -inline void IROFlowgraph_sub_4C2140(IRONodes *nodes) { +CW_INLINE void IROFlowgraph_sub_4C2140(IRONodes *nodes) {      nodes->indices = oalloc(sizeof(UInt16) * IRO_NumNodes);      nodes->num = 0;      nodes->base = 0;  } -inline void IROFlowgraph_sub_4C20E0(IRONodes *nodes) { +CW_INLINE void IROFlowgraph_sub_4C20E0(IRONodes *nodes) {  } -inline UInt16 IROFlowgraph_sub_4C2040(IRONodes *nodes) { +CW_INLINE UInt16 IROFlowgraph_sub_4C2040(IRONodes *nodes) {      return nodes->num;  } -inline UInt16 IROFlowgraph_sub_4C2100(IRONodes *nodes) { +CW_INLINE UInt16 IROFlowgraph_sub_4C2100(IRONodes *nodes) {      UInt16 result = -1;      if (nodes->num) {          result = nodes->indices[nodes->base]; @@ -85,7 +85,7 @@ inline UInt16 IROFlowgraph_sub_4C2100(IRONodes *nodes) {      return result;  } -inline void IROFlowgraph_sub_4C3880(IRONodes *nodes, UInt16 index) { +CW_INLINE void IROFlowgraph_sub_4C3880(IRONodes *nodes, UInt16 index) {      if (nodes->num < IRO_NumNodes) {          nodes->indices[(nodes->base + nodes->num) % IRO_NumNodes] = index;          nodes->num++;  | 
