File tree 1 file changed +6
-6
lines changed 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -177,21 +177,21 @@ bool RISCVISAInfo::addExtension(StringRef ExtName,
177
177
}
178
178
179
179
static StringRef getExtensionTypeDesc (StringRef Ext) {
180
- if (Ext.starts_with (" s " ))
180
+ if (Ext.starts_with (' s ' ))
181
181
return " standard supervisor-level extension" ;
182
- if (Ext.starts_with (" x " ))
182
+ if (Ext.starts_with (' x ' ))
183
183
return " non-standard user-level extension" ;
184
- if (Ext.starts_with (" z " ))
184
+ if (Ext.starts_with (' z ' ))
185
185
return " standard user-level extension" ;
186
186
return StringRef ();
187
187
}
188
188
189
189
static StringRef getExtensionType (StringRef Ext) {
190
- if (Ext.starts_with (" s " ))
190
+ if (Ext.starts_with (' s ' ))
191
191
return " s" ;
192
- if (Ext.starts_with (" x " ))
192
+ if (Ext.starts_with (' x ' ))
193
193
return " x" ;
194
- if (Ext.starts_with (" z " ))
194
+ if (Ext.starts_with (' z ' ))
195
195
return " z" ;
196
196
return StringRef ();
197
197
}
You can’t perform that action at this time.
0 commit comments