Frama-C-discuss mailing list archives

This page gathers the archives of the old Frama-C-discuss archives, that was hosted by Inria's gforge before its demise at the end of 2020. To search for mails newer than September 2020, please visit the page of the new mailing list on Renater.


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Frama-c-discuss] lots of unproved goals for simple example



I should add that I'm getting similar results (mostly unproved goals) for 
*really* trivial examples like below.  Curiously, for each goal either all 
solvers rapidly prove it or else all solvers timeout. I suspect I just 
installed something incorrectly but I don't know how to debug it.

John


#include <stdint.h>

/*@ requires (r > 0) && (r < 32) */
uint32_t rotate_left (uint32_t x, uint32_t r)
{
   return (x << r) | (x >> (32-r));
}