Skip to content

Commit 87f41c8

Browse files
author
Amirhossein Pashaeehir
committed
Lint
1 parent 4042154 commit 87f41c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/include/llvm/DebugInfo/DWARF/LowLevel/DWARFUnwindTable.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class UnwindLocation {
124124
uint32_t getRegister() const { return RegNum; }
125125
int32_t getOffset() const { return Offset; }
126126
bool hasAddressSpace() const {
127-
if(AddrSpace)
127+
if (AddrSpace)
128128
return true;
129129
return false;
130130
}
@@ -182,7 +182,7 @@ class RegisterLocations {
182182

183183
SmallVector<uint32_t, 4> getRegisters() const {
184184
SmallVector<uint32_t, 4> Registers;
185-
for(auto &&[Register, _]: Locations)
185+
for (auto &&[Register, _] : Locations)
186186
Registers.push_back(Register);
187187
return Registers;
188188
}

0 commit comments

Comments
 (0)