diff options
| author | 2025-12-19 12:59:24 +0100 | |
|---|---|---|
| committer | 2025-12-19 12:59:24 +0100 | |
| commit | 575b24a9f023f7950eefea6d85431281f04cc1dc (patch) | |
| tree | dd16f337ae42fbb5f226d8e76f357f55e95d93df /ir/ir.h | |
| parent | 13b158caadb1d649101f9ea4c865fc67daba22d5 (diff) | |
ir: move some filluses() to ir.c, rename optmem.c -> mem2reg.c
Diffstat (limited to 'ir/ir.h')
| -rw-r--r-- | ir/ir.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -271,6 +271,7 @@ union ref insertphi(struct block *, enum irclass cls); void replcuses(union ref from, union ref to); bool deluse(struct block *ublk, int ui, union ref r); void deluses(int ins); +void filluses(struct function *); void delinstr(struct block *, int idx); void delphi(struct block *, int idx); void delnops(struct block *blk); @@ -300,7 +301,6 @@ bool foldunop(union ref *to, enum op, enum irclass, union ref); void irdump(struct function *); /** ssa.c **/ -void filluses(struct function *); void copyopt(struct function *); /** cfg.c **/ @@ -311,7 +311,7 @@ void filldom(struct function *fn); void abi0(struct function *); void abi0_call(struct function *, struct instr *, struct block *blk, int *curi); -/** optmem.c **/ +/** mem2reg.c **/ void mem2reg(struct function *); /** intrin.c **/ |