Skip to content

Commit c50dede

Browse files
author
Kyle Krueger
committed
run clang-format
1 parent fe60ac4 commit c50dede

File tree

7 files changed

+15
-14
lines changed

7 files changed

+15
-14
lines changed

llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
#define LLVM_DEBUGINFO_PDB_CONCRETESYMBOLENUMERATOR_H
1111

1212
#include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
13-
#include "llvm/DebugInfo/PDB/PDBTypes.h"
1413
#include "llvm/DebugInfo/PDB/PDBSymbol.h"
14+
#include "llvm/DebugInfo/PDB/PDBTypes.h"
1515
#include "llvm/Support/Casting.h"
1616
#include <algorithm>
1717
#include <cstdint>

llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
#define LLVM_DEBUGINFO_PDB_IPDBRAWSYMBOL_H
1111

1212
#include "PDBTypes.h"
13-
#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
1413
#include "llvm/ADT/BitmaskEnum.h"
1514
#include "llvm/ADT/SmallVector.h"
1615
#include "llvm/DebugInfo/CodeView/CodeView.h"
16+
#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
1717
#include "llvm/Support/Compiler.h"
1818
#include <memory>
1919

llvm/lib/MC/MCGOFFStreamer.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,3 @@ llvm::MCGOFFStreamer::MCGOFFStreamer(MCContext &Context,
5151
std::unique_ptr<MCCodeEmitter> Emitter)
5252
: MCObjectStreamer(Context, std::move(MAB), std::move(OW),
5353
std::move(Emitter)) {}
54-

llvm/lib/TableGen/TGParser.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@ using namespace llvm;
3434
namespace llvm {
3535

3636
RecordsEntry::RecordsEntry(std::unique_ptr<Record> Rec) : Rec(std::move(Rec)) {}
37-
RecordsEntry::RecordsEntry(std::unique_ptr<ForeachLoop> Loop) : Loop(std::move(Loop)) {}
37+
RecordsEntry::RecordsEntry(std::unique_ptr<ForeachLoop> Loop)
38+
: Loop(std::move(Loop)) {}
3839
RecordsEntry::RecordsEntry(std::unique_ptr<Record::AssertionInfo> Assertion)
39-
: Assertion(std::move(Assertion)) {}
40+
: Assertion(std::move(Assertion)) {}
4041
RecordsEntry::RecordsEntry(std::unique_ptr<Record::DumpInfo> Dump)
41-
: Dump(std::move(Dump)) {}
42+
: Dump(std::move(Dump)) {}
4243

4344
struct SubClassReference {
4445
SMRange RefRange;

llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,11 @@ RISCVTargetELFStreamer::RISCVTargetELFStreamer(MCStreamer &S,
3636
setFlagsFromFeatures(STI);
3737
}
3838

39-
RISCVELFStreamer::RISCVELFStreamer(MCContext &C, std::unique_ptr<MCAsmBackend> MAB,
40-
std::unique_ptr<MCObjectWriter> MOW,
41-
std::unique_ptr<MCCodeEmitter> MCE)
42-
: MCELFStreamer(C, std::move(MAB), std::move(MOW), std::move(MCE)) {}
39+
RISCVELFStreamer::RISCVELFStreamer(MCContext &C,
40+
std::unique_ptr<MCAsmBackend> MAB,
41+
std::unique_ptr<MCObjectWriter> MOW,
42+
std::unique_ptr<MCCodeEmitter> MCE)
43+
: MCELFStreamer(C, std::move(MAB), std::move(MOW), std::move(MCE)) {}
4344

4445
RISCVELFStreamer &RISCVTargetELFStreamer::getStreamer() {
4546
return static_cast<RISCVELFStreamer &>(Streamer);

llvm/tools/dsymutil/DebugMap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ struct YAMLContext {
136136
} // end anonymous namespace
137137

138138
DebugMap::DebugMap(const Triple &BinaryTriple, StringRef BinaryPath,
139-
ArrayRef<uint8_t> BinaryUUID)
139+
ArrayRef<uint8_t> BinaryUUID)
140140
: BinaryTriple(BinaryTriple), BinaryPath(std::string(BinaryPath)),
141141
BinaryUUID(BinaryUUID.begin(), BinaryUUID.end()) {}
142142

llvm/tools/llvm-cov/SourceCoverageView.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@
2222
using namespace llvm;
2323

2424
ExpansionView::ExpansionView(const CounterMappingRegion &Region,
25-
std::unique_ptr<SourceCoverageView> View)
25+
std::unique_ptr<SourceCoverageView> View)
2626
: Region(Region), View(std::move(View)) {}
2727

2828
ExpansionView::ExpansionView(ExpansionView &&RHS)
2929
: Region(std::move(RHS.Region)), View(std::move(RHS.View)) {}
3030

31-
ExpansionView& ExpansionView::operator=(ExpansionView &&RHS) {
31+
ExpansionView &ExpansionView::operator=(ExpansionView &&RHS) {
3232
Region = std::move(RHS.Region);
3333
View = std::move(RHS.View);
3434
return *this;
3535
}
3636

3737
InstantiationView::InstantiationView(StringRef FunctionName, unsigned Line,
38-
std::unique_ptr<SourceCoverageView> View)
38+
std::unique_ptr<SourceCoverageView> View)
3939
: FunctionName(FunctionName), Line(Line), View(std::move(View)) {}
4040

4141
void CoveragePrinter::StreamDestructor::operator()(raw_ostream *OS) const {

0 commit comments

Comments
 (0)