Skip to content

Commit 4df7bf9

Browse files
committed
RequirementMachine: Pack RewriteStep more tightly
1 parent d4732f5 commit 4df7bf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/AST/RequirementMachine/RewriteLoop.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,11 @@ struct RewriteStep {
219219

220220
/// The size of the left whisker, which is the position within the term where
221221
/// the rule is being applied. In A.(X => Y).B, this is |A|=1.
222-
unsigned StartOffset : 16;
222+
unsigned StartOffset : 13;
223223

224224
/// The size of the right whisker, which is the length of the remaining suffix
225225
/// after the rule is applied. In A.(X => Y).B, this is |B|=1.
226-
unsigned EndOffset : 16;
226+
unsigned EndOffset : 13;
227227

228228
/// If Kind is Rule, the index of the rule in the rewrite system.
229229
///

0 commit comments

Comments
 (0)