Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-s168 committed May 13, 2024
1 parent 7539d99 commit 360695b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ir/ir.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <stddef.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>

#include "../common.h"

Expand Down Expand Up @@ -65,6 +66,10 @@ struct vx_IrType_s {
};
};

static vx_IrType* vx_IrType_heap(void) {
return (vx_IrType*) malloc(sizeof(vx_IrType));
}

struct vx_IrBlock_s;
typedef struct vx_IrBlock_s vx_IrBlock;

Expand Down

0 comments on commit 360695b

Please sign in to comment.