~ubuntu-branches/debian/sid/frama-c/sid

« back to all changes in this revision

Viewing changes to tests/slicing/loop_infinite.c

  • Committer: Bazaar Package Importer
  • Author(s): Mehdi Dogguy
  • Date: 2009-06-03 08:19:25 UTC
  • Revision ID: james.westby@ubuntu.com-20090603081925-kihvxvt0wy3zc4ar
Tags: upstream-20081201.dfsg
ImportĀ upstreamĀ versionĀ 20081201.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* run.config
 
2
   OPT: -deps -slice-print -slice-return main -journal-disable
 
3
*/
 
4
int main() {
 
5
  volatile int a=0,b,c;
 
6
  if (a)
 
7
    {a = 1;
 
8
 
 
9
  while (1) {
 
10
    a++;
 
11
    };
 
12
  return 0;}
 
13
}