Skip to content

Commit e031d89

Browse files
committed
update var after rename
1 parent edfecbc commit e031d89

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

llvm/tools/llvm-lto/llvm-lto.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ static cl::opt<bool> TryUseNewDbgInfoFormat(
270270
cl::init(false), cl::Hidden);
271271

272272
extern cl::opt<bool> UseNewDbgInfoFormat;
273-
extern cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInforFormat;
273+
extern cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInfoFormat;
274274

275275
namespace {
276276

@@ -945,8 +945,8 @@ int main(int argc, char **argv) {
945945
cl::HideUnrelatedOptions({&LTOCategory, &getColorCategory()});
946946
cl::ParseCommandLineOptions(argc, argv, "llvm LTO linker\n");
947947
// Load bitcode into the new debug info format by default.
948-
if (LoadBitcodeIntoNewDbgInforFormat == cl::boolOrDefault::BOU_UNSET)
949-
LoadBitcodeIntoNewDbgInforFormat = cl::boolOrDefault::BOU_TRUE;
948+
if (LoadBitcodeIntoNewDbgInfoFormat == cl::boolOrDefault::BOU_UNSET)
949+
LoadBitcodeIntoNewDbgInfoFormat = cl::boolOrDefault::BOU_TRUE;
950950

951951
// RemoveDIs debug-info transition: tests may request that we /try/ to use the
952952
// new debug-info format.

llvm/tools/llvm-lto2/llvm-lto2.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ static cl::opt<bool> TryUseNewDbgInfoFormat(
193193
cl::init(false), cl::Hidden);
194194

195195
extern cl::opt<bool> UseNewDbgInfoFormat;
196-
extern cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInforFormat;
196+
extern cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInfoFormat;
197197

198198
static void check(Error E, std::string Msg) {
199199
if (!E)
@@ -230,8 +230,8 @@ static int usage() {
230230
static int run(int argc, char **argv) {
231231
cl::ParseCommandLineOptions(argc, argv, "Resolution-based LTO test harness");
232232
// Load bitcode into the new debug info format by default.
233-
if (LoadBitcodeIntoNewDbgInforFormat == cl::boolOrDefault::BOU_UNSET)
234-
LoadBitcodeIntoNewDbgInforFormat = cl::boolOrDefault::BOU_TRUE;
233+
if (LoadBitcodeIntoNewDbgInfoFormat == cl::boolOrDefault::BOU_UNSET)
234+
LoadBitcodeIntoNewDbgInfoFormat = cl::boolOrDefault::BOU_TRUE;
235235

236236
// RemoveDIs debug-info transition: tests may request that we /try/ to use the
237237
// new debug-info format.

0 commit comments

Comments
 (0)