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
I realise long and int are the same size on windows, but I still think CBMC should report the types as they are declared in the code unless a cast occurs. If nothing else, it adds an extra layer of obfuscation when reading the traces.
Test case:
int main()
{
unsigned long a;
unsigned int b;
a = 0;
b = 0;
__CPROVER_assert(0,"");
}