We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5027ed1 commit ead579dCopy full SHA for ead579d
llvm/include/llvm/CodeGen/GlobalISel/GIMatchTableExecutor.h
@@ -721,8 +721,7 @@ class GIMatchTableExecutor {
721
// - Unchecked execution, assumes no error.
722
// - Fast common case handling (1 byte values).
723
LLVM_ATTRIBUTE_ALWAYS_INLINE static uint64_t
724
- fastDecodeULEB128(const uint8_t *__restrict MatchTable,
725
- uint64_t &CurrentIdx) {
+ fastDecodeULEB128(const uint8_t *MatchTable, uint64_t &CurrentIdx) {
726
uint64_t Value = MatchTable[CurrentIdx] & 0x7f;
727
if (LLVM_UNLIKELY(MatchTable[CurrentIdx++] >= 128)) {
728
unsigned Shift = 7;
0 commit comments