diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2023-03-27 15:21:51 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2023-04-06 16:03:03 +0300 |
commit | 81ff90b3fc4f38abea2ab9472924dcdf0d1f10fe (patch) | |
tree | 233c37c1339142a86089fc7ef2bedd2bd95456b3 /lib/Module/KModule.cpp | |
parent | 2769f1f4dc3515a8b5fc22ccf3e30b906faef75d (diff) | |
download | klee-81ff90b3fc4f38abea2ab9472924dcdf0d1f10fe.tar.gz |
Support disabling compiler warnings; Use with external headers
Diffstat (limited to 'lib/Module/KModule.cpp')
-rw-r--r-- | lib/Module/KModule.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Module/KModule.cpp b/lib/Module/KModule.cpp index 2e96c68a..eed922f8 100644 --- a/lib/Module/KModule.cpp +++ b/lib/Module/KModule.cpp @@ -22,6 +22,9 @@ #include "klee/Support/ErrorHandling.h" #include "klee/Support/ModuleUtil.h" +#include "klee/Support/CompilerWarning.h" +DISABLE_WARNING_PUSH +DISABLE_WARNING_DEPRECATED_DECLARATIONS #include "llvm/Bitcode/BitcodeWriter.h" #include "llvm/IR/DataLayout.h" #include "llvm/IR/IRBuilder.h" @@ -40,6 +43,7 @@ #include "llvm/Transforms/Scalar/Scalarizer.h" #include "llvm/Transforms/Utils/Cloning.h" #include "llvm/Transforms/Utils.h" +DISABLE_WARNING_POP #include <sstream> |