Update roc glue

This commit is contained in:
Ayaz Hafiz 2023-01-04 12:48:47 -06:00
parent d4b60052b0
commit 55b8aaebda
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
2 changed files with 27 additions and 27 deletions

View file

@ -163,6 +163,11 @@ pub trait LayoutInterner<'a>: Sized {
.stack_size_and_alignment(self, self.target_info())
}
fn stack_size_without_alignment(&self, layout: InLayout<'a>) -> u32 {
self.get(layout)
.stack_size_without_alignment(self, self.target_info())
}
fn contains_refcounted(&self, layout: InLayout<'a>) -> bool {
self.get(layout).contains_refcounted(self)
}