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] Value analysis emits warning for for-loop


  • Subject: [Frama-c-discuss] Value analysis emits warning for for-loop
  • From: Boris.Hollas at de.bosch.com (Hollas Boris (CR/AEY1))
  • Date: Tue, 21 Apr 2009 14:40:19 -0000

Hi,

run on code [1], the value analysis plugin emits warnings [2] that I don't understand:
- why does frama-c warn about entering the for-loop for the first time?
- why does it warn about the assignment i=0?

-Boris

[1]

void main() {
  int i;

  for(i=0; i<10; i++) ;
}


[2]

tst8.c:4: Warning: entering loop for the first time
tst8.c:4: Warning: assigning non deterministic value for the first time