Skip to content

Commit 06f01ed

Browse files
committed
Fix whitespace
1 parent e7a1a5a commit 06f01ed

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/aotcompile.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ static SmallVector<Partition, 32> partitionModule(Module &M, unsigned threads) {
737737
for (unsigned i = 0; i < threads; ++i) {
738738
pq.push(&partitions[i]);
739739
}
740-
740+
741741
// Assign the root of each partition to a partition, then assign its children to the same one
742742
for (unsigned i = 0; i < partitioner.nodes.size(); ++i) {
743743
auto root = partitioner.find(i);
@@ -1029,7 +1029,7 @@ static void add_output(Module &M, TargetMachine &TM, std::vector<std::string> &o
10291029
dbgs() << "Time to add output: " << (end - start) / 1e9 << "s\n";
10301030
return;
10311031
}
1032-
1032+
10331033
start = jl_hrtime();
10341034
uint64_t counter = 0;
10351035
for (auto &G : M.global_values()) {
@@ -1068,7 +1068,7 @@ static void add_output(Module &M, TargetMachine &TM, std::vector<std::string> &o
10681068
materializePreserved(*M, partitions[i]);
10691069
end = jl_hrtime();
10701070
dbgs() << "Materialization time for shard " << i << ": " << (end - start) / 1e9 << "s\n";
1071-
1071+
10721072
start = jl_hrtime();
10731073
construct_vars(*M, partitions[i]);
10741074
M->setModuleFlag(Module::Error, "julia.mv.suffix", MDString::get(M->getContext(), "_" + std::to_string(i)));
@@ -1288,7 +1288,7 @@ void jl_dump_native_impl(void *native_code,
12881288
!!unopt_bc_fname, !!bc_fname, !!obj_fname, !!asm_fname,
12891289
threads
12901290
); };
1291-
1291+
12921292
compile(*dataM, "text", threads);
12931293

12941294
end = jl_hrtime();
@@ -1407,7 +1407,7 @@ void jl_dump_native_impl(void *native_code,
14071407
if (asm_fname)
14081408
handleAllErrors(writeArchive(asm_fname, asm_Archive, true,
14091409
Kind, true, false), reportWriterError);
1410-
1410+
14111411
end = jl_hrtime();
14121412

14131413
dbgs() << "archive time: " << (end - start) / 1e9 << "s\n";

src/llvm-multiversioning.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ static bool runMultiVersioning(Module &M, bool allow_bad_fvars)
928928
return false;
929929

930930
CloneCtx clone(M, allow_bad_fvars);
931-
931+
932932
clone.prepare_slots();
933933

934934
clone.clone_decls();

0 commit comments

Comments
 (0)