Nullable pointer and loop inlining tests. #22

Closed
peony wants to merge 7 commits from peony/holey-bytes:trunk into trunk
3 changed files with 3 additions and 2 deletions
Showing only changes of commit d4a52b6342 - Show all commits

View file

@ -1046,12 +1046,12 @@ main := fn(): uint {
```hb
x := 1
foo := fn(): int {
foo := fn(): void {
loop if true break
x = 0
}
main := fn(): int {
main := fn(): uint {
@inline(foo)
return x
}

View file

@ -4412,6 +4412,7 @@ mod tests {
writing_into_string;
request_page;
tests_ptr_to_ptr_copy;
inlining_loops;
null_check_test;
// Just Testing Optimizations;

View file