about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorAndrea Mattavelli <andreamattavelli@users.noreply.github.com>2017-03-03 18:34:19 +0000
committerGitHub <noreply@github.com>2017-03-03 18:34:19 +0000
commit2b053eeded2688c7bb17be191b45c11080b44ca7 (patch)
tree882ca015f3b307f31ae34f66e3f72f7b0423e39b /include
parent4b199e1726ac45227f62ae0365063236a9a10033 (diff)
parent6f20f660ab2ae28ba6ec8e5262a2d1c31e0ab9ed (diff)
downloadklee-2b053eeded2688c7bb17be191b45c11080b44ca7.tar.gz
Merge pull request #613 from ccadar/minor2
Moved printFileLine() to be part of KInstruction
Diffstat (limited to 'include')
-rw-r--r--include/klee/Internal/Module/KInstruction.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/klee/Internal/Module/KInstruction.h b/include/klee/Internal/Module/KInstruction.h
index 62f514ff..1cad98fd 100644
--- a/include/klee/Internal/Module/KInstruction.h
+++ b/include/klee/Internal/Module/KInstruction.h
@@ -11,7 +11,11 @@
 #define KLEE_KINSTRUCTION_H
 
 #include "klee/Config/Version.h"
+#include "klee/Internal/Module/InstructionInfoTable.h"
+
 #include "llvm/Support/DataTypes.h"
+#include "llvm/Support/raw_ostream.h"
+
 #include <vector>
 
 namespace llvm {
@@ -39,7 +43,9 @@ namespace klee {
     unsigned dest;
 
   public:
-    virtual ~KInstruction(); 
+    virtual ~KInstruction();
+    void printFileLine(llvm::raw_ostream &);
+
   };
 
   struct KGEPInstruction : KInstruction {