forked from AbleOS/holey-bytes
forgotten dbgs
This commit is contained in:
parent
d2052cd2a3
commit
65e9f272a8
|
@ -1252,8 +1252,6 @@ impl Nodes {
|
||||||
return Some(NEVER);
|
return Some(NEVER);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::dbg!(&self[self[target].inputs[1]]);
|
|
||||||
|
|
||||||
if self[target].inputs[1] == NEVER {
|
if self[target].inputs[1] == NEVER {
|
||||||
self.lock(target);
|
self.lock(target);
|
||||||
for o in self[target].outputs.clone() {
|
for o in self[target].outputs.clone() {
|
||||||
|
@ -2424,7 +2422,7 @@ impl<'a> Codegen<'a> {
|
||||||
let (index, _) = self.ci.nodes.aclass_index(region);
|
let (index, _) = self.ci.nodes.aclass_index(region);
|
||||||
let aclass = &mut self.ci.scope.aclasses[index];
|
let aclass = &mut self.ci.scope.aclasses[index];
|
||||||
self.ci.nodes.load_loop_aclass(index, aclass, &mut self.ci.loops);
|
self.ci.nodes.load_loop_aclass(index, aclass, &mut self.ci.loops);
|
||||||
let vc = [std::dbg!(aclass.clobber.get()), region, aclass.last_store.get()];
|
let vc = [aclass.clobber.get(), region, aclass.last_store.get()];
|
||||||
self.ci.nodes.new_node(ty, Kind::Load, vc)
|
self.ci.nodes.new_node(ty, Kind::Load, vc)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue