aboutsummaryrefslogtreecommitdiff
path: root/src/relooper/test5.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/relooper/test5.cpp')
-rw-r--r--src/relooper/test5.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/relooper/test5.cpp b/src/relooper/test5.cpp
index f86da2b3..d04d157d 100644
--- a/src/relooper/test5.cpp
+++ b/src/relooper/test5.cpp
@@ -7,17 +7,17 @@ int main() {
void *r = rl_new_relooper();
- void *b0 = rl_new_block("//0");
+ void *b0 = rl_new_block("//0", "the_var");
rl_relooper_add_block(r, b0);
- void *b1 = rl_new_block("//1");
+ void *b1 = rl_new_block("//1", "the_var");
rl_relooper_add_block(r, b1);
- void *b2 = rl_new_block("//2");
+ void *b2 = rl_new_block("//2", "the_var");
rl_relooper_add_block(r, b2);
- void *b3 = rl_new_block("//3");
+ void *b3 = rl_new_block("//3", "the_var");
rl_relooper_add_block(r, b3);
- void *b4 = rl_new_block("//4");
+ void *b4 = rl_new_block("//4", "the_var");
rl_relooper_add_block(r, b4);
- void *b5 = rl_new_block("//5");
+ void *b5 = rl_new_block("//5", "the_var");
rl_relooper_add_block(r, b5);
rl_block_add_branch_to(b0, b1, "check(0)", NULL);