@@ -187,7 +187,8 @@ class DWARFExpressionPrinter {
187187 // / \param OS to this stream
188188 // / \param GetNameForDWARFReg callback to return dwarf register name
189189 LLVM_ABI static void print (const DWARFExpression *E, raw_ostream &OS,
190- DIDumpOptions DumpOpts, DWARFUnit *U, bool IsEH = false );
190+ DIDumpOptions DumpOpts, DWARFUnit *U,
191+ bool IsEH = false );
191192
192193 // / Print the expression in a format intended to be compact and useful to a
193194 // / user, but not perfectly unambiguous, or capable of representing every
@@ -199,9 +200,10 @@ class DWARFExpressionPrinter {
199200 // / \param GetNameForDWARFReg callback to return dwarf register name
200201 // /
201202 // / \returns true if the expression was successfully printed
202- LLVM_ABI static bool printCompact (const DWARFExpression *E, raw_ostream &OS,
203- std::function<StringRef(uint64_t RegNum, bool IsEH)>
204- GetNameForDWARFReg = nullptr);
203+ LLVM_ABI static bool printCompact (
204+ const DWARFExpression *E, raw_ostream &OS,
205+ std::function<StringRef(uint64_t RegNum, bool IsEH)> GetNameForDWARFReg =
206+ nullptr);
205207
206208 // / Pretty print a register opcode and operands.
207209 // / \param U within the context of this Dwarf unit, if any.
@@ -212,8 +214,9 @@ class DWARFExpressionPrinter {
212214 // /
213215 // / returns true if the Op was successfully printed
214216 LLVM_ABI static bool prettyPrintRegisterOp (DWARFUnit *U, raw_ostream &OS,
215- DIDumpOptions DumpOpts, uint8_t Opcode,
216- ArrayRef<uint64_t > Operands);
217+ DIDumpOptions DumpOpts,
218+ uint8_t Opcode,
219+ ArrayRef<uint64_t > Operands);
217220
218221private:
219222 static bool printOp (const DWARFExpression::Operation *Op, raw_ostream &OS,
0 commit comments