You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the epic saga of problems with both branches being dead in the relational analysis, we proudly present the next example:
// SKIP PARAM: --set ana.activated[+] apron --set ana.relation.privatization mutex-meet --sets ana.apron.domain interval// Checks that assinging to malloc'ed memory does not cause both branches to be dead#include<pthread.h>voidnop(void*arg) {
}
voidmain() {
pthread_tthread;
pthread_create(&thread, 0, &nop, 0);
long*k=malloc(sizeof(long));
*k=5;
if (1)
;
}
The text was updated successfully, but these errors were encountered:
In the epic saga of problems with both branches being dead in the relational analysis, we proudly present the next example:
The text was updated successfully, but these errors were encountered: