diff options
author | Mikhail <mishok2503@mail.ru> | 2022-06-08 16:36:28 +0300 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2022-07-04 22:20:00 +0100 |
commit | 99c522b14dbbf6b26be35b6e7bb8da7b29070287 (patch) | |
tree | 49fb535d7beda87188b878c053b1b3241e07fc3f /lib/Core/ExternalDispatcher.h | |
parent | 3d0033f099c907bcd5d4d2c2a7562037071ec2bf (diff) | |
download | klee-99c522b14dbbf6b26be35b6e7bb8da7b29070287.tar.gz |
Inline asm external call
Diffstat (limited to 'lib/Core/ExternalDispatcher.h')
-rw-r--r-- | lib/Core/ExternalDispatcher.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Core/ExternalDispatcher.h b/lib/Core/ExternalDispatcher.h index 7730ac4e..72e6faaa 100644 --- a/lib/Core/ExternalDispatcher.h +++ b/lib/Core/ExternalDispatcher.h @@ -20,11 +20,11 @@ namespace llvm { class Instruction; class LLVMContext; -class Function; } namespace klee { class ExternalDispatcherImpl; +class KCallable; class ExternalDispatcher { private: ExternalDispatcherImpl *impl; @@ -37,7 +37,7 @@ public: * ci with arguments in args[1], args[2], ... and writing the result * into args[0]. */ - bool executeCall(llvm::Function *function, llvm::Instruction *i, + bool executeCall(KCallable *callable, llvm::Instruction *i, uint64_t *args); void *resolveSymbol(const std::string &name); |