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.
2 parents 58ce532 + 126a72f commit 4bb9ba2Copy full SHA for 4bb9ba2
clang/utils/TableGen/MveEmitter.cpp
@@ -158,6 +158,7 @@ inline std::string toLetter(ScalarTypeKind kind) {
158
case ScalarTypeKind::Float:
159
return "f";
160
}
161
+ llvm_unreachable("Unhandled ScalarTypeKind enum");
162
163
inline std::string toCPrefix(ScalarTypeKind kind) {
164
switch (kind) {
@@ -168,6 +169,7 @@ inline std::string toCPrefix(ScalarTypeKind kind) {
168
169
170
return "float";
171
172
173
174
175
class VoidType : public Type {
0 commit comments