summaryrefslogtreecommitdiff
path: root/peephole.h
diff options
context:
space:
mode:
authorWormHeamer2025-08-30 23:20:51 -0400
committerWormHeamer2025-08-30 23:20:51 -0400
commitcbca8b454309122632615f0bcb787bc898503df9 (patch)
tree5b888ba81858df7f45baffe4a760d816cd59cd08 /peephole.h
parent6e419a23faf6550c3d3e986796ccf33bdec79c74 (diff)
separate IR graph parts of Proc into a Graph struct
Diffstat (limited to 'peephole.h')
-rw-r--r--peephole.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/peephole.h b/peephole.h
index e9a2cab..11c0961 100644
--- a/peephole.h
+++ b/peephole.h
@@ -4,6 +4,6 @@
#include "ir.h"
Value node_compute(Node *n, Lexer *l);
-Node *node_peephole(Node *n, Proc *p, Lexer *l);
+Node *node_peephole(Node *n, Graph *p, Lexer *l);
#endif