aboutsummaryrefslogtreecommitdiff
path: root/all.h
diff options
context:
space:
mode:
authorMichael Forney <[email protected]>2019-02-14 13:23:28 -0800
committerQuentin Carbonneaux <[email protected]>2019-03-14 10:12:55 +0100
commitf622efa05a3fbd4938d1fb09e692ae0785770bc1 (patch)
treedb5fafeb08735aa6ac3127597b61a6b149982b55 /all.h
parentb777cd6c4becf0d834f8fa549315fa11918a53be (diff)
Rearrange the fields in Ins so the bit-fields get packed together
Diffstat (limited to 'all.h')
-rw-r--r--all.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/all.h b/all.h
index e125f3a..ae39145 100644
--- a/all.h
+++ b/all.h
@@ -199,9 +199,9 @@ struct Op {
struct Ins {
uint op:30;
+ uint cls:2;
Ref to;
Ref arg[2];
- uint cls:2;
};
struct Phi {