summaryrefslogtreecommitdiff
path: root/include/llvm/AutoUpgrade.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-08-28 23:24:31 +0000
committerDevang Patel <dpatel@apple.com>2009-08-28 23:24:31 +0000
commite4b275610a7a05b7ee4c0378a906a6330e4c4ab0 (patch)
treead839c82009fa9220c9934db785cfa5ee35c9d25 /include/llvm/AutoUpgrade.h
parente4e4ed3b56f63e9343e01bf0b2ecd7c1f45d296c (diff)
downloadllvm-e4b275610a7a05b7ee4c0378a906a6330e4c4ab0.tar.gz
llvm-e4b275610a7a05b7ee4c0378a906a6330e4c4ab0.tar.bz2
llvm-e4b275610a7a05b7ee4c0378a906a6330e4c4ab0.tar.xz
Reapply 79977.
Use MDNodes to encode debug info in llvm IR. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80406 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/AutoUpgrade.h')
-rw-r--r--include/llvm/AutoUpgrade.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/AutoUpgrade.h b/include/llvm/AutoUpgrade.h
index f61bd1a08d..0a81c80795 100644
--- a/include/llvm/AutoUpgrade.h
+++ b/include/llvm/AutoUpgrade.h
@@ -15,6 +15,7 @@
#define LLVM_AUTOUPGRADE_H
namespace llvm {
+ class Module;
class Function;
class CallInst;
@@ -34,6 +35,9 @@ namespace llvm {
/// so that it can update all calls to the old function.
void UpgradeCallsToIntrinsic(Function* F);
+ /// This function checks debug info intrinsics. If an intrinsic is invalid
+ /// then this function simply removes the intrinsic.
+ void CheckDebugInfoIntrinsics(Module *M);
} // End llvm namespace
#endif