Skip to content

Commit a2994de

Browse files
authored
[RISCV] Fix RISCVBitPositions typo (#110953)
This patch updates `{"zve64x", 0, 63},` into `{"zve64f", 0, 63},`. Base on https://github.com/riscv-non-isa/riscv-c-api-doc/blob/main/src/c-api.adoc#extension-bitmask-definitions
1 parent aec87a2 commit a2994de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/TargetParser/RISCVISAInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ constexpr static RISCVExtBit RISCVBitPositions[] = {
10491049
{"zvksed", 0, 57}, {"zvksh", 0, 58},
10501050
{"zvkt", 0, 59}, {"zve32x", 0, 60},
10511051
{"zve32f", 0, 61}, {"zve64x", 0, 62},
1052-
{"zve64x", 0, 63}, {"zve64d", 1, 0},
1052+
{"zve64f", 0, 63}, {"zve64d", 1, 0},
10531053
{"zimop", 1, 1}, {"zca", 1, 2},
10541054
{"zcb", 1, 3}, {"zcd", 1, 4},
10551055
{"zcf", 1, 5}, {"zcmop", 1, 6},

0 commit comments

Comments
 (0)