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

« back to all changes in this revision

Viewing changes to src/relooper/test_debug.txt

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-09-20 22:44:35 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20130920224435-apuwj4fsl3fqv1a6
Tags: 1.5.6~20130920~6010666-1
* New snapshot release
* Update the list of supported architectures to the same as libv8
  (Closes: #723129)
* emlibtool has been removed from upstream.
* Fix warning syntax-error-in-dep5-copyright
* Refresh of the patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
// === Optimizing shapes ===
116
116
// Fusing Multiple to Simple
117
117
ep
118
 
do {
119
 
  if (ep -> LBB1) {
120
 
    LBB1
121
 
    if (!(LBB1 -> LBB2)) {
122
 
      break;
123
 
    }
124
 
    LBB2
125
 
  }
 
118
L1: do {
 
119
 switch (the_var) {
 
120
 ep -> LBB1 {
 
121
  LBB1
 
122
  switch (the_var) {
 
123
  LBB1 -> LBB2 {
 
124
   break;
 
125
  }
 
126
  default: {
 
127
   break L1;
 
128
  }
 
129
  }
 
130
  LBB2
 
131
  switch (the_var) {
 
132
  default: {
 
133
  }
 
134
  }
 
135
  break;
 
136
 }
 
137
 default: {
 
138
 }
 
139
 }
126
140
} while(0);
127
141
LBB3
128
142