summaryrefslogtreecommitdiff
path: root/tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.h
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2019-08-20 17:59:23 +0000
committerDimitry Andric <dim@FreeBSD.org>2019-08-20 17:59:23 +0000
commit9a83721404652cea39e9f02ae3e3b5c964602a5c (patch)
tree23e9541ce27049a103f6ed046be61592123e02c9 /tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.h
parent676fbe8105eeb6ff4bb2ed261cb212fcfdbe7b63 (diff)
Notes
Diffstat (limited to 'tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.h')
-rw-r--r--tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.h b/tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.h
deleted file mode 100644
index 51660fcb710b2..0000000000000
--- a/tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.h
+++ /dev/null
@@ -1,23 +0,0 @@
-//==-- loop_proto_to_llvm.h - Protobuf-C++ conversion ----------------------------==//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// Defines functions for converting between protobufs and LLVM IR.
-//
-//===----------------------------------------------------------------------===//
-
-#include <cstdint>
-#include <cstddef>
-#include <string>
-
-namespace clang_fuzzer {
-class LoopFunction;
-
-std::string LoopFunctionToLLVMString(const LoopFunction &input);
-std::string LoopProtoToLLVM(const uint8_t *data, size_t size);
-}