[llvm] [NFC] Fix code line exceeding 80 columns (PR #104428)
Rahul Joshi via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 15 07:35:10 PDT 2024
https://github.com/jurahul updated https://github.com/llvm/llvm-project/pull/104428
>From 3e6be452cdbb0fc138ca5cf8453293f2d60b7407 Mon Sep 17 00:00:00 2001
From: Rahul Joshi <rjoshi at nvidia.com>
Date: Thu, 15 Aug 2024 04:01:40 -0700
Subject: [PATCH] [NFC] Fix code line exceeding 80 columns
---
llvm/tools/llc/llc.cpp | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/llvm/tools/llc/llc.cpp b/llvm/tools/llc/llc.cpp
index d3f7c2b7f819b6..80c84a977c26c6 100644
--- a/llvm/tools/llc/llc.cpp
+++ b/llvm/tools/llc/llc.cpp
@@ -130,8 +130,9 @@ static cl::opt<std::string> SplitDwarfFile(
static cl::opt<bool> NoVerify("disable-verify", cl::Hidden,
cl::desc("Do not verify input module"));
-static cl::opt<bool> DisableSimplifyLibCalls("disable-simplify-libcalls",
- cl::desc("Disable simplify-libcalls"));
+static cl::opt<bool>
+ DisableSimplifyLibCalls("disable-simplify-libcalls",
+ cl::desc("Disable simplify-libcalls"));
static cl::opt<bool> ShowMCEncoding("show-mc-encoding", cl::Hidden,
cl::desc("Show encoding in .s output"));
More information about the llvm-commits
mailing list