about summary refs log tree commit diff
path: root/llvm_mode/MarkNodes.h
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2019-07-14 19:58:04 +0200
committerGitHub <noreply@github.com>2019-07-14 19:58:04 +0200
commit4a80dbdd10aedd3a3e70a0631aeb4e01438b634c (patch)
tree7539488e0c9f6b69e79477f55f1218f79f0fbdd2 /llvm_mode/MarkNodes.h
parent5508e3085480878b5e27baf4f98625e6cf4be013 (diff)
parent013a1731d590eaa1f3e4c58c69985f89b7a3d2f9 (diff)
downloadafl++-4a80dbdd10aedd3a3e70a0631aeb4e01438b634c.tar.gz
Merge pull request #13 from vanhauser-thc/instrim
Instrim imported
Diffstat (limited to 'llvm_mode/MarkNodes.h')
-rw-r--r--llvm_mode/MarkNodes.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm_mode/MarkNodes.h b/llvm_mode/MarkNodes.h
new file mode 100644
index 00000000..e3bf3ce5
--- /dev/null
+++ b/llvm_mode/MarkNodes.h
@@ -0,0 +1,11 @@
+#ifndef __MARK_NODES__
+#define __MARK_NODES__
+
+#include "llvm/IR/BasicBlock.h"
+#include "llvm/IR/Function.h"
+#include<vector>
+
+std::pair<std::vector<llvm::BasicBlock *>,
+          std::vector<llvm::BasicBlock *>> markNodes(llvm::Function *F);
+
+#endif