aboutsummaryrefslogtreecommitdiff
path: root/lib/dis.h
diff options
context:
space:
mode:
authorcomex2015-07-16 00:55:19 -0400
committercomex2015-07-16 00:55:19 -0400
commitdfd16cc1f759a103707ebd27743abc621486e131 (patch)
treee3ef16871039acb735bbf4179d299e8d8ea7d5a1 /lib/dis.h
parentwork around (incorrect, since it's not code) alignment warning (diff)
downloadsubstitute-dfd16cc1f759a103707ebd27743abc621486e131.tar.gz
style police
Diffstat (limited to '')
-rw-r--r--lib/dis.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/dis.h b/lib/dis.h
index 99f3a7c..ba2a6c7 100644
--- a/lib/dis.h
+++ b/lib/dis.h
@@ -67,7 +67,9 @@ static inline unsigned bs_set(struct bitslice bs, unsigned new, unsigned op) {
return op;
}
-static inline struct bitslice bs_slice_(struct bitslice bs, struct bitslice_run *runs, int lo, int size) {
+static inline struct bitslice bs_slice_(struct bitslice bs,
+ struct bitslice_run *runs,
+ int lo, int size) {
int nruns = 0;
for(int i = 0; i < bs.nruns; i++) {
struct bitslice_run inr = bs.runs[i];