We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9de5c4 commit 52bd778Copy full SHA for 52bd778
src/sea_of_nodes/nodes/idealize.rs
@@ -558,7 +558,13 @@ impl Load {
558
if let Some(nnn1) = mproj.inputs(sea)[0].and_then(|i| i.to_new(sea)) {
559
if let Some(pproj) = ptr.and_then(|p| p.to_proj(sea)) {
560
if pproj.inputs(sea)[0] == mproj.inputs(sea)[0] {
561
- // return castRO(nnn1.in(nnn1.findAlias(_alias))); // Load from New init
+ return Some(
562
+ self.cast_ro(
563
+ nnn1.inputs(sea)[nnn1.find_alias(sea[self].alias, sea)]
564
+ .unwrap(),
565
+ sea,
566
+ ),
567
+ ); // Load from New init
568
}
569
570
if !ptr.and_then(|p| p.to_proj(sea)).is_some_and(|pproj| {
0 commit comments