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 b181c22 commit 9ba1121Copy full SHA for 9ba1121
clang/utils/TableGen/RISCVVEmitter.cpp
@@ -133,28 +133,20 @@ static BasicType ParseBasicType(char c) {
133
switch (c) {
134
case 'c':
135
return BasicType::Int8;
136
- break;
137
case 's':
138
return BasicType::Int16;
139
140
case 'i':
141
return BasicType::Int32;
142
143
case 'l':
144
return BasicType::Int64;
145
146
case 'x':
147
return BasicType::Float16;
148
149
case 'f':
150
return BasicType::Float32;
151
152
case 'd':
153
return BasicType::Float64;
154
155
case 'y':
156
return BasicType::BFloat16;
157
158
default:
159
return BasicType::Unknown;
160
}
0 commit comments