C++: VariableAddressInstructions with array types are not single-object types.

This commit is contained in:
Mathias Vorreiter Pedersen
2024-12-09 15:06:22 +00:00
parent 41425b157f
commit 9bcdfb6d01
3 changed files with 7 additions and 3 deletions

View File

@@ -1137,5 +1137,5 @@ void test_uncertain_array(int n1, int n2) {
int data[10];
*(data + 1) = source();
*data = 0;
sink(*(data + 1)); // $ ast=1138:17 ast=1137:7 MISSING: ir
sink(*(data + 1)); // $ ast=1138:17 ast=1137:7 ir
}