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] Problem with bitwise xor


  • Subject: [Frama-c-discuss] Problem with bitwise xor
  • From: Boris.Hollas at de.bosch.com (Hollas Boris (CR/AEY1))
  • Date: Wed, 2 Dec 2009 16:50:03 +0100

In this code snippet, Jessie can't verify arithmetic overflow:


typedef unsigned int uint32;

uint32 Xor( uint32 x, uint32 y )
{
    return x ^ y;
}


This looks like a bug to me. I use Beryllium 1.

-Boris