MCPcopy Create free account
hub / github.com/Genivia/ugrep / opcode_tail

Method opcode_tail

include/reflex/pattern.h:1319–1322  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1317 return 0xfd000000;
1318 }
1319 static inline Opcode opcode_tail(Index index)
1320 {
1321 return 0xfc000000 | (index & 0xffffff); // index <= Const::LMAX (0xfaffff max)
1322 }
1323 static inline Opcode opcode_head(Index index)
1324 {
1325 return 0xfb000000 | (index & 0xffffff); // index <= Const::LMAX (0xfaffff max)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected