Skip to content

Commit ead579d

Browse files
committed
remove __restrict
1 parent 5027ed1 commit ead579d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/include/llvm/CodeGen/GlobalISel/GIMatchTableExecutor.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -721,8 +721,7 @@ class GIMatchTableExecutor {
721721
// - Unchecked execution, assumes no error.
722722
// - Fast common case handling (1 byte values).
723723
LLVM_ATTRIBUTE_ALWAYS_INLINE static uint64_t
724-
fastDecodeULEB128(const uint8_t *__restrict MatchTable,
725-
uint64_t &CurrentIdx) {
724+
fastDecodeULEB128(const uint8_t *MatchTable, uint64_t &CurrentIdx) {
726725
uint64_t Value = MatchTable[CurrentIdx] & 0x7f;
727726
if (LLVM_UNLIKELY(MatchTable[CurrentIdx++] >= 128)) {
728727
unsigned Shift = 7;

0 commit comments

Comments
 (0)