We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 004e3ae commit 7f60099Copy full SHA for 7f60099
tests/regression/13-privatized/89-write-lacking-precision.c
@@ -9,9 +9,10 @@ struct a h = {""};
9
struct a i = {"string"};
10
11
void* d(void* args) {
12
- struct a r;
13
if (c->b) {
14
- __goblint_check(strlen(h.b) == 0); // Should also work for write!
+ // Handled by privatization as a write
+ // Without fix (#1468) causes both h.b and i.b to become unknown string
15
+ __goblint_check(strlen(h.b) == 0); // Check h.b is still known
16
}
17
18
0 commit comments