Skip to content
Snippets Groups Projects

Intraprocedural SROA

Merged Aaron Councilman requested to merge sroa into main
Files
6
+ 8
0
@@ -728,6 +728,14 @@ impl Type {
None
}
}
pub fn try_product(&self) -> Option<&[TypeID]> {
if let Type::Product(ts) = self {
Some(ts)
} else {
None
}
}
}
impl Constant {
Loading