Merge branch 'main' into mathiasvp/array-field-flow

This commit is contained in:
Mathias Vorreiter Pedersen
2020-09-16 10:45:31 +02:00
94 changed files with 7573 additions and 1517 deletions

View File

@@ -109,11 +109,11 @@ void test_outer_with_ptr(Outer *pouter) {
sink(outer.inner_nested.a); // $ast,ir
sink(outer.inner_ptr->a); // $ast $f-:ir
sink(outer.a); // $f-:ast $ir
sink(outer.a); // $ast,ir
sink(pouter->inner_nested.a); // $ast,ir
sink(pouter->inner_ptr->a); // $ast $f-:ir
sink(pouter->a); // $f-:ast $ir
sink(pouter->a); // $ast,ir
}
void test_outer_with_ref(Outer *pouter) {