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 4042154 commit 87f41c8Copy full SHA for 87f41c8
llvm/include/llvm/DebugInfo/DWARF/LowLevel/DWARFUnwindTable.h
@@ -124,7 +124,7 @@ class UnwindLocation {
124
uint32_t getRegister() const { return RegNum; }
125
int32_t getOffset() const { return Offset; }
126
bool hasAddressSpace() const {
127
- if(AddrSpace)
+ if (AddrSpace)
128
return true;
129
return false;
130
}
@@ -182,7 +182,7 @@ class RegisterLocations {
182
183
SmallVector<uint32_t, 4> getRegisters() const {
184
SmallVector<uint32_t, 4> Registers;
185
- for(auto &&[Register, _]: Locations)
+ for (auto &&[Register, _] : Locations)
186
Registers.push_back(Register);
187
return Registers;
188
0 commit comments