From ea6e216751979131b269ed31873edbe7e8b752a3 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Fri, 22 May 2009 16:27:06 +0000 Subject: Add "name" argument to klee_make_symbolic, and kill off klee_make_symbolic_name. - For compatibility we still accept 2 argument form of klee_make_symbolic, but this will go away eventually. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72265 91177308-0d34-0410-b5e6-96231b3b80d8 --- examples/sort/sort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/sort/sort.c') diff --git a/examples/sort/sort.c b/examples/sort/sort.c index a1629c6b..62e4124e 100644 --- a/examples/sort/sort.c +++ b/examples/sort/sort.c @@ -71,7 +71,7 @@ void test(int *array, unsigned nelem) { int main() { int input[4] = { 4, 3, 2, 1}; - klee_make_symbolic(&input, sizeof(input)); + klee_make_symbolic(&input, sizeof(input), "input"); test(input, 4); return 0; -- cgit 1.4.1