File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ static cl::opt<bool> TryUseNewDbgInfoFormat(
270
270
cl::init(false ), cl::Hidden);
271
271
272
272
extern cl::opt<bool > UseNewDbgInfoFormat;
273
- extern cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInforFormat ;
273
+ extern cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInfoFormat ;
274
274
275
275
namespace {
276
276
@@ -945,8 +945,8 @@ int main(int argc, char **argv) {
945
945
cl::HideUnrelatedOptions ({<OCategory, &getColorCategory ()});
946
946
cl::ParseCommandLineOptions (argc, argv, " llvm LTO linker\n " );
947
947
// 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;
950
950
951
951
// RemoveDIs debug-info transition: tests may request that we /try/ to use the
952
952
// new debug-info format.
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ static cl::opt<bool> TryUseNewDbgInfoFormat(
193
193
cl::init(false ), cl::Hidden);
194
194
195
195
extern cl::opt<bool > UseNewDbgInfoFormat;
196
- extern cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInforFormat ;
196
+ extern cl::opt<cl::boolOrDefault> LoadBitcodeIntoNewDbgInfoFormat ;
197
197
198
198
static void check (Error E, std::string Msg) {
199
199
if (!E)
@@ -230,8 +230,8 @@ static int usage() {
230
230
static int run (int argc, char **argv) {
231
231
cl::ParseCommandLineOptions (argc, argv, " Resolution-based LTO test harness" );
232
232
// 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;
235
235
236
236
// RemoveDIs debug-info transition: tests may request that we /try/ to use the
237
237
// new debug-info format.
You can’t perform that action at this time.
0 commit comments