summary refs log tree commit diff
path: root/all.h
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2024-02-26 17:49:44 +0900
committerNguyễn Gia Phong <cnx@loang.net>2024-03-01 05:14:50 +0900
commitf6c6302192bfc6f1bfba253367317cdb52ba4370 (patch)
treeefd23ddd371ac9cd98082ca8f1b3ddfd1e97d245 /all.h
parentc9dff9cb9c9bb9ac685d59d12f7f991c30a1cd94 (diff)
downloadroux-f6c6302192bfc6f1bfba253367317cdb52ba4370.tar.gz
Port entry point to Zig
Diffstat (limited to 'all.h')
-rw-r--r--all.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/all.h b/all.h
index e421b9c..d383c64 100644
--- a/all.h
+++ b/all.h
@@ -502,7 +502,8 @@ bshas(BSet *bs, uint elt)
 
 /* parse.c */
 extern Op optab[NOp];
-void parse(FILE *, char *, void (char *), void (Dat *), void (Fn *));
+void parse(FILE *, char *, FILE *,
+	void (Dat *, FILE *), void (Fn *, FILE *));
 void printfn(Fn *, FILE *);
 void printref(Ref, Fn *, FILE *);
 void err(char *, ...) __attribute__((noreturn));
@@ -540,8 +541,6 @@ void loadopt(Fn *);
 
 /* ssa.c */
 void filluse(Fn *);
-void fillpreds(Fn *);
-void fillrpo(Fn *);
 void ssa(Fn *);
 void ssacheck(Fn *);