diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-08-16 17:02:43 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-08-21 17:09:16 -0700 |
commit | d705c37e34ad11b01ad33e7c985818a14623dff7 (patch) | |
tree | bb1a48ff1208f5a4efda08d6f2a5c1827e55a0b3 /src/relooper/test_debug.cpp | |
parent | ab506b38dbb9acb2db4f1a1b8c1608cc57409a6b (diff) |
emit switches in relooper1.5.6
Diffstat (limited to 'src/relooper/test_debug.cpp')
-rw-r--r-- | src/relooper/test_debug.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/relooper/test_debug.cpp b/src/relooper/test_debug.cpp index 14511b62..91b6c9d7 100644 --- a/src/relooper/test_debug.cpp +++ b/src/relooper/test_debug.cpp @@ -6,13 +6,13 @@ 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); rl_block_add_branch_to(ep, LBB1, "ep -> LBB1", NULL); |