diff options
author | Fangrui Song <i@maskray.me> | 2022-06-07 00:31:02 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2022-06-07 00:31:02 -0700 |
commit | 15d82c62dcd7ba1bff6b62c2efaeeeac1187760f (patch) | |
tree | 149fed92f1f060e9a13e16a52c54f1b61b9f4880 /llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | |
parent | 411bd2d40788c8cb869dc4fdc37e01a57213cda9 (diff) | |
download | llvm-15d82c62dcd7ba1bff6b62c2efaeeeac1187760f.zip llvm-15d82c62dcd7ba1bff6b62c2efaeeeac1187760f.tar.gz llvm-15d82c62dcd7ba1bff6b62c2efaeeeac1187760f.tar.bz2 |
[MC] De-capitalize MCStreamer functions
Follow-up to c031378ce01b8485ba0ef486654bc9393c4ac024 .
The class is mostly consistent now.
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp index 26f5009..421cc71 100644 --- a/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp @@ -978,11 +978,11 @@ void CodeViewDebug::emitInlineeLinesSubsection() { assert(TypeIndices.count({SP, nullptr})); TypeIndex InlineeIdx = TypeIndices[{SP, nullptr}]; - OS.AddBlankLine(); + OS.addBlankLine(); unsigned FileId = maybeRecordFile(SP->getFile()); OS.AddComment("Inlined function " + SP->getName() + " starts at " + SP->getFilename() + Twine(':') + Twine(SP->getLine())); - OS.AddBlankLine(); + OS.addBlankLine(); OS.AddComment("Type index of inlined function"); OS.emitInt32(InlineeIdx.getIndex()); OS.AddComment("Offset into filechecksum table"); |