aboutsummaryrefslogtreecommitdiff
path: root/src/relooper/test3.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/relooper/test3.c')
-rw-r--r--src/relooper/test3.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/relooper/test3.c b/src/relooper/test3.c
index 2cef14fb..f652a2bc 100644
--- a/src/relooper/test3.c
+++ b/src/relooper/test3.c
@@ -6,19 +6,19 @@ int main() {
rl_set_output_buffer(buffer, sizeof(buffer));
void *r = rl_new_relooper();
- void *ep = rl_new_block("ep");
+ void *ep = rl_new_block("ep", "the_var");
rl_relooper_add_block(r, ep);
- void *LBB1 = rl_new_block("LBB1");
+ void *LBB1 = rl_new_block("LBB1", "the_var");
rl_relooper_add_block(r, LBB1);
- void *LBB2 = rl_new_block("LBB2");
+ void *LBB2 = rl_new_block("LBB2", "the_var");
rl_relooper_add_block(r, LBB2);
- void *LBB3 = rl_new_block("LBB3");
+ void *LBB3 = rl_new_block("LBB3", "the_var");
rl_relooper_add_block(r, LBB3);
- void *LBB4 = rl_new_block("LBB4");
+ void *LBB4 = rl_new_block("LBB4", "the_var");
rl_relooper_add_block(r, LBB4);
- void *LBB5 = rl_new_block("LBB5");
+ void *LBB5 = rl_new_block("LBB5", "the_var");
rl_relooper_add_block(r, LBB5);
- void *LBB6 = rl_new_block("LBB6");
+ void *LBB6 = rl_new_block("LBB6", "the_var");
rl_relooper_add_block(r, LBB6);
rl_block_add_branch_to(ep, LBB1, "ep -> LBB1", NULL);