aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/Utils/DbgInfoUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Transforms/Utils/DbgInfoUtils.h')
-rw-r--r--include/llvm/Transforms/Utils/DbgInfoUtils.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/llvm/Transforms/Utils/DbgInfoUtils.h b/include/llvm/Transforms/Utils/DbgInfoUtils.h
deleted file mode 100644
index 13f8fa3ef2..0000000000
--- a/include/llvm/Transforms/Utils/DbgInfoUtils.h
+++ /dev/null
@@ -1,28 +0,0 @@
-//===-- Transform/Utils/DbgInfoUtils.h - DbgInfo Utils ----------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// Utility functions to manipulate debugging information.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_TRANSFORMS_UTILS_DBGINFO_H
-#define LLVM_TRANSFORMS_UTILS_DBGINFO_H
-namespace llvm {
-class BasicBlock;
-class Function;
-
-/// RemoveDeadDbgIntrinsics - Remove dead dbg intrinsics from this
-/// basic block.
-void RemoveDeadDbgIntrinsics(BasicBlock &BB);
-
-/// RemoveDeadDbgIntrinsics - Remove dead dbg intrinsics from this function.
-void RemoveDeadDbgIntrinsics(Function &F);
-
-} // End llvm namespace
-#endif