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 490421d commit 1db8c93Copy full SHA for 1db8c93
llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
@@ -189,10 +189,10 @@ bool DebugHandlerBase::isUnsignedDIType(const DIType *Ty) {
189
// FIXME: Enums without a fixed underlying type have unknown signedness
190
// here, leading to incorrectly emitted constants.
191
return false;
192
- } else
193
- // (Pieces of) aggregate types that get hacked apart by SROA may be
194
- // represented by a constant. Encode them as unsigned bytes.
195
- return true;
+ }
+ // (Pieces of) aggregate types that get hacked apart by SROA may be
+ // represented by a constant. Encode them as unsigned bytes.
+ return true;
196
}
197
198
if (auto *DTy = dyn_cast<DIDerivedType>(Ty)) {
0 commit comments