aboutsummaryrefslogtreecommitdiff
path: root/src/relooper/test6.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/relooper/test6.cpp')
-rw-r--r--src/relooper/test6.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/relooper/test6.cpp b/src/relooper/test6.cpp
index 90453d4c..c292e79c 100644
--- a/src/relooper/test6.cpp
+++ b/src/relooper/test6.cpp
@@ -7,13 +7,13 @@ 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);
rl_block_add_branch_to(b0, b1, "check(0)", NULL);