Skip to content

Commit

Permalink
lib/ir/project: remove old inlining pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Obst committed Jul 23, 2024
1 parent 9b8dc03 commit d02b555
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 326 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ use crate::analysis;
use crate::utils::log::LogMessage;
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet};

/// Contains implementation of the block duplication normalization pass.
mod block_duplication_normalization;
use block_duplication_normalization::*;
pub mod propagate_control_flow;
use propagate_control_flow::*;
pub mod normalization_passes;
Expand Down Expand Up @@ -377,7 +374,6 @@ impl Project {
let mut logs = self.remove_duplicate_tids();
self.add_artifical_sink();
logs.append(self.remove_references_to_nonexisting_tids().as_mut());
make_block_to_sub_mapping_unique(self);
logs.append(
self.retarget_non_returning_calls_to_artificial_sink()
.as_mut(),
Expand Down

This file was deleted.

0 comments on commit d02b555

Please sign in to comment.