File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -301,11 +301,11 @@ type lico uint32
301
301
// The bitfield order is chosen to make IsStmt be the least significant
302
302
// part of a position; its use is to communicate statement edges through
303
303
// instruction scrambling in code generation, not to impose an order.
304
- // TODO: Prologue and epilogue are perhaps better handled as psuedoops for the assembler,
304
+ // TODO: Prologue and epilogue are perhaps better handled as pseudo-ops for the assembler,
305
305
// because they have almost no interaction with other uses of the position.
306
306
const (
307
307
lineBits , lineMax = 20 , 1 << lineBits - 2
308
- bogusLine = 1 << lineBits - 1 // Not a line number; used to disruopt infinite loops
308
+ bogusLine = 1 << lineBits - 1 // Not a line number; used to disrupt infinite loops
309
309
isStmtBits , isStmtMax = 2 , 1 << isStmtBits - 1
310
310
xlogueBits , xlogueMax = 2 , 1 << xlogueBits - 1
311
311
colBits , colMax = 32 - lineBits - xlogueBits - isStmtBits , 1 << colBits - 1
You can’t perform that action at this time.
0 commit comments