about summary refs log tree commit diff homepage
path: root/test/Feature/CheckForImpliedValue.c.failing
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/CheckForImpliedValue.c.failing')
-rw-r--r--test/Feature/CheckForImpliedValue.c.failing4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Feature/CheckForImpliedValue.c.failing b/test/Feature/CheckForImpliedValue.c.failing
index bb643647..0aa50f0b 100644
--- a/test/Feature/CheckForImpliedValue.c.failing
+++ b/test/Feature/CheckForImpliedValue.c.failing
@@ -9,8 +9,8 @@
 int main() {
   unsigned x, y;
   
-  klee_make_symbolic(&x, sizeof x);
-  klee_make_symbolic(&y, sizeof y);
+  klee_make_symbolic(&x, sizeof x, "x");
+  klee_make_symbolic(&y, sizeof y, "y");
 
   if (!x) { // should give x = 0 hit by ivc
     printf("ok\n");