diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2020-09-04 22:04:57 +0200 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-10-12 11:19:24 +0100 |
commit | 9c445a83bc03ca4a0335e98704feee44183831a6 (patch) | |
tree | 868034bc5ed0406a6bced20f30340146ca079b50 /lib | |
parent | e94d9c6268cb75ff317a42e26f33c419e6686b5d (diff) | |
download | klee-9c445a83bc03ca4a0335e98704feee44183831a6.tar.gz |
Exception handling only for LLVM >= 8.0.0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Core/SpecialFunctionHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/SpecialFunctionHandler.cpp b/lib/Core/SpecialFunctionHandler.cpp index a853d6ad..7144e235 100644 --- a/lib/Core/SpecialFunctionHandler.cpp +++ b/lib/Core/SpecialFunctionHandler.cpp @@ -477,7 +477,7 @@ void SpecialFunctionHandler::handleEhUnwindRaiseExceptionImpl( } if (state.unwindingInformation && - isa<SearchPhaseUnwindingInformation>(state.unwindingInformation)) { + isa<SearchPhaseUnwindingInformation>(state.unwindingInformation.get())) { executor.terminateStateOnExecError( state, "Internal error: Unwinding restarted during an ongoing search phase"); |