summary refs log tree commit diff
path: root/all.h
diff options
context:
space:
mode:
Diffstat (limited to 'all.h')
-rw-r--r--all.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/all.h b/all.h
index 943480a..5784d9a 100644
--- a/all.h
+++ b/all.h
@@ -530,7 +530,8 @@ void bsdiff(BSet *, BSet *);
 int bsequal(BSet *, BSet *);
 int bsiter(BSet *, int *);
 
-static inline int bshas(BSet *bs, uint elt)
+static inline int
+bshas(BSet *bs, uint elt)
 {
 	assert(elt < bs->nt * NBit);
 	return (bs->t[elt/NBit] & BIT(elt%NBit)) != 0;
@@ -561,6 +562,9 @@ void fillalias(Fn *);
 int alias(Ref, int, Ref, int, int *, Fn *);
 int escapes(Ref, Fn *);
 
+/* load.c */
+void loadopt(Fn *);
+
 /* ssa.c */
 void filluse(Fn *);
 void fillpreds(Fn *);