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

« back to all changes in this revision

Viewing changes to src/relooper/test3.c

  • 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:
6
6
  rl_set_output_buffer(buffer, sizeof(buffer));
7
7
 
8
8
  void *r = rl_new_relooper();
9
 
  void *ep = rl_new_block("ep");
 
9
  void *ep = rl_new_block("ep", "the_var");
10
10
  rl_relooper_add_block(r, ep);
11
 
  void *LBB1 = rl_new_block("LBB1");
 
11
  void *LBB1 = rl_new_block("LBB1", "the_var");
12
12
  rl_relooper_add_block(r, LBB1);
13
 
  void *LBB2 = rl_new_block("LBB2");
 
13
  void *LBB2 = rl_new_block("LBB2", "the_var");
14
14
  rl_relooper_add_block(r, LBB2);
15
 
  void *LBB3 = rl_new_block("LBB3");
 
15
  void *LBB3 = rl_new_block("LBB3", "the_var");
16
16
  rl_relooper_add_block(r, LBB3);
17
 
  void *LBB4 = rl_new_block("LBB4");
 
17
  void *LBB4 = rl_new_block("LBB4", "the_var");
18
18
  rl_relooper_add_block(r, LBB4);
19
 
  void *LBB5 = rl_new_block("LBB5");
 
19
  void *LBB5 = rl_new_block("LBB5", "the_var");
20
20
  rl_relooper_add_block(r, LBB5);
21
 
  void *LBB6 = rl_new_block("LBB6");
 
21
  void *LBB6 = rl_new_block("LBB6", "the_var");
22
22
  rl_relooper_add_block(r, LBB6);
23
23
 
24
24
  rl_block_add_branch_to(ep, LBB1, "ep -> LBB1", NULL);