about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2017-03-02 14:59:28 +0000
committerCristian Cadar <c.cadar@imperial.ac.uk>2017-03-03 17:30:16 +0000
commit6f20f660ab2ae28ba6ec8e5262a2d1c31e0ab9ed (patch)
treec7677c524bbc25255c49a2c32477626af8cf4de6 /include
parent4f5ea494986689dd89f97f9a64082527557c71c9 (diff)
downloadklee-6f20f660ab2ae28ba6ec8e5262a2d1c31e0ab9ed.tar.gz
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 {