Skip to content

Commit 4459745

Browse files
[llvm] Ensure newline at the end of files (NFC) (#143061)
Without newlines at the end, git diff would display: No newline at end of file
1 parent ad6631f commit 4459745

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

llvm/include/llvm/ExecutionEngine/Orc/Debugging/DebugInfoSupport.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ class DebugInfoPreservationPlugin : public ObjectLinkingLayer::Plugin {
6060

6161
} // namespace llvm
6262

63-
#endif
63+
#endif

llvm/include/llvm/ExecutionEngine/Orc/Debugging/PerfSupportPlugin.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ class LLVM_ABI PerfSupportPlugin : public ObjectLinkingLayer::Plugin {
6666
} // namespace orc
6767
} // namespace llvm
6868

69-
#endif // LLVM_EXECUTIONENGINE_ORC_PERFSUPPORTPLUGIN_H
69+
#endif // LLVM_EXECUTIONENGINE_ORC_PERFSUPPORTPLUGIN_H

llvm/include/llvm/ExecutionEngine/Orc/Shared/PerfSharedStructs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,4 +230,4 @@ class SPSSerializationTraits<SPSPerfJITRecordBatch, PerfJITRecordBatch> {
230230

231231
} // namespace llvm
232232

233-
#endif
233+
#endif

llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/JITLoaderPerf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ llvm_orc_registerJITLoaderPerfStart(const char *ArgData, size_t ArgSize);
2626
extern "C" LLVM_ABI llvm::orc::shared::CWrapperFunctionResult
2727
llvm_orc_registerJITLoaderPerfEnd(const char *ArgData, size_t ArgSize);
2828

29-
#endif // LLVM_EXECUTIONENGINE_ORC_TARGETPROCESS_JITLOADERPERF_H
29+
#endif // LLVM_EXECUTIONENGINE_ORC_TARGETPROCESS_JITLOADERPERF_H

llvm/lib/Analysis/CFG.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,4 +368,4 @@ bool llvm::isPresplitCoroSuspendExitEdge(const BasicBlock &Src,
368368
return Intr->getIntrinsicID() == Intrinsic::coro_suspend &&
369369
SW->getDefaultDest() == &Dest;
370370
return false;
371-
}
371+
}

llvm/lib/ExecutionEngine/JITLink/COFFOptions.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ multiclass B_priv<string name> {
1818

1919
def export : P<"export">;
2020
def alternatename : P<"alternatename">;
21-
def incl : Joined<["/", "-", "/?", "-?"], "include:">;
21+
def incl : Joined<["/", "-", "/?", "-?"], "include:">;

llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,4 +246,4 @@ void AArch64TargetStreamer::activateAtributesSubsection(StringRef VendorName) {
246246
SubSection.IsActive = false;
247247
}
248248
}
249-
}
249+
}

llvm/lib/Target/CSKY/CSKYInstrAlias.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ def : InstAlias<"jsri $dst", (PseudoJSRI32 call_symbol:$dst)>;
3535
def : InstAlias<"jsri $dst", (JSRI32 constpool_symbol:$dst)>;
3636

3737
def : InstAlias<"jmpi $dst", (PseudoJMPI32 br_symbol:$dst)>;
38-
def : InstAlias<"jmpi $dst", (JMPI32 constpool_symbol:$dst)>;
38+
def : InstAlias<"jmpi $dst", (JMPI32 constpool_symbol:$dst)>;

llvm/lib/Target/X86/X86RegisterInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1280,4 +1280,4 @@ bool X86RegisterInfo::isNonRex2RegClass(const TargetRegisterClass *RC) const {
12801280
case X86::GR64_with_sub_16bit_in_GR16_NOREX2RegClassID:
12811281
return true;
12821282
}
1283-
}
1283+
}

llvm/lib/Target/X86/X86SuppressAPXForReloc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,4 +252,4 @@ bool X86SuppressAPXForRelocationPass::runOnMachineFunction(
252252
Changed |= handleNDDOrNFInstructions(MF, ST);
253253

254254
return Changed;
255-
}
255+
}

llvm/lib/Transforms/IPO/StripSymbols.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,4 +316,4 @@ PreservedAnalyses StripDeadCGProfilePass::run(Module &M,
316316
M.setModuleFlag(Module::Append, "CG Profile",
317317
MDTuple::getDistinct(M.getContext(), ValidCGEdges));
318318
return PreservedAnalyses::none();
319-
}
319+
}

llvm/tools/llvm-remarkutil/RemarkSizeDiff.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,4 +498,4 @@ static Error trySizeSiff() {
498498
}
499499

500500
static CommandRegistration RemarkSizeSiffRegister(&RemarkSizeDiffUtil,
501-
trySizeSiff);
501+
trySizeSiff);

0 commit comments

Comments
 (0)