~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to src/relooper/test5.txt

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//0
 
2
if (check(0)) {
 
3
  while(1) {
 
4
    //1
 
5
    if (!(check(1))) {
 
6
      break;
 
7
    }
 
8
  }
 
9
  while(1) {
 
10
    //2
 
11
    if (!(check(2))) {
 
12
      break;
 
13
    }
 
14
  }
 
15
  //3
 
16
} else {
 
17
  goingFrom0to4();
 
18
  while(1) {
 
19
    //4
 
20
    if (!(check(4))) {
 
21
      break;
 
22
    }
 
23
  }
 
24
  while(1) {
 
25
    //5
 
26
    if (check(5)) {
 
27
      break;
 
28
    }
 
29
  }
 
30
  //3
 
31
}
 
32