diff options
| author | Julian Büning <julian.buening@rwth-aachen.de> | 2018-10-01 10:33:34 +0200 |
|---|---|---|
| committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-05-30 09:45:21 +0100 |
| commit | 4b93a3ecf7514d181730f5a8f8bfe7e086160b4c (patch) | |
| tree | 50b6509e86f449d6ab2ef8c867c5ff776433c1f3 /lib/Core/ExecutionState.cpp | |
| parent | abf654288c2f7f0ee6e1dd3e34b70c1aabe82ea7 (diff) | |
| download | klee-4b93a3ecf7514d181730f5a8f8bfe7e086160b4c.tar.gz | |
remove klee_alias_function()
this function can be used to modify the control flow of the program on different paths, enabling self-modifying code.
Diffstat (limited to 'lib/Core/ExecutionState.cpp')
| -rw-r--r-- | lib/Core/ExecutionState.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/Core/ExecutionState.cpp b/lib/Core/ExecutionState.cpp index 70d5d21c..48154383 100644 --- a/lib/Core/ExecutionState.cpp +++ b/lib/Core/ExecutionState.cpp @@ -173,14 +173,6 @@ std::string ExecutionState::getFnAlias(std::string fn) { else return ""; } -void ExecutionState::addFnAlias(std::string old_fn, std::string new_fn) { - fnAliases[old_fn] = new_fn; -} - -void ExecutionState::removeFnAlias(std::string fn) { - fnAliases.erase(fn); -} - /**/ llvm::raw_ostream &klee::operator<<(llvm::raw_ostream &os, const MemoryMap &mm) { |
