File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
llvm/lib/CodeGen/AsmPrinter Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -226,12 +226,15 @@ bool DebugHandlerBase::isUnsignedDIType(const DIType *Ty) {
226
226
Encoding == dwarf::DW_ATE_float || Encoding == dwarf::DW_ATE_UTF ||
227
227
Encoding == dwarf::DW_ATE_boolean ||
228
228
Encoding == dwarf::DW_ATE_complex_float ||
229
+ Encoding == dwarf::DW_ATE_signed_fixed ||
230
+ Encoding == dwarf::DW_ATE_unsigned_fixed ||
229
231
(Ty->getTag () == dwarf::DW_TAG_unspecified_type &&
230
232
Ty->getName () == " decltype(nullptr)" )) &&
231
233
" Unsupported encoding" );
232
234
return Encoding == dwarf::DW_ATE_unsigned ||
233
235
Encoding == dwarf::DW_ATE_unsigned_char ||
234
236
Encoding == dwarf::DW_ATE_UTF || Encoding == dwarf::DW_ATE_boolean ||
237
+ Encoding == llvm::dwarf::DW_ATE_unsigned_fixed ||
235
238
Ty->getTag () == dwarf::DW_TAG_unspecified_type;
236
239
}
237
240
// FIXME: the signedness should come from the expression where the type is
You can’t perform that action at this time.
0 commit comments