Add lib impl for klee_make_symbolic()

This commit is contained in:
Joe Ranweiler 2018-02-23 15:09:02 -08:00
parent f7791f216f
commit 236ee6856e
No known key found for this signature in database
GPG Key ID: E0B6458CB03D167E

View File

@ -26,8 +26,9 @@ DEEPSTATE_BEGIN_EXTERN_C
/* TODO(joe): Implement */
static void klee_define_fixed_object(void *addr, size_t nbytes);
/* TODO(joe): Implement */
static void klee_make_symbolic(void *addr, size_t nbytes, const char *name);
static void klee_make_symbolic(void *addr, size_t nbytes, const char *name) {
DeepState_SymbolizeData(addr, addr + nbytes);
}
/* TODO(joe): Implement */
static int klee_range(int begin, int end, const char *name);