Skip to content
Snippets Groups Projects

Lift math on dynamic constants in IR to dynamic constant math

Merged rarbore2 requested to merge lift_to_dc_math into main
6 files
+ 112
3
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 1
1
@@ -8,7 +8,7 @@ use crate::*;
@@ -8,7 +8,7 @@ use crate::*;
*/
*/
pub fn dce(editor: &mut FunctionEditor) {
pub fn dce(editor: &mut FunctionEditor) {
// Create worklist (starts as all nodes).
// Create worklist (starts as all nodes).
let mut worklist: Vec<NodeID> = (0..editor.func().nodes.len()).map(NodeID::new).collect();
let mut worklist: Vec<NodeID> = editor.node_ids().collect();
while let Some(work) = worklist.pop() {
while let Some(work) = worklist.pop() {
// If a node on the worklist is a start node, it is either *the* start
// If a node on the worklist is a start node, it is either *the* start
Loading