diff options
author | Victor Hernandez <vhernandez@apple.com> | 2009-12-07 21:54:43 +0000 |
---|---|---|
committer | Victor Hernandez <vhernandez@apple.com> | 2009-12-07 21:54:43 +0000 |
commit | c59b33562c84cb627e456fa979df2242f81b5a87 (patch) | |
tree | 755dde580933f159e38c07338621a3ebdb31641a /include | |
parent | 4063f6bcc775bb0429dea2276694c4cdc2d4dca1 (diff) | |
download | external_llvm-c59b33562c84cb627e456fa979df2242f81b5a87.zip external_llvm-c59b33562c84cb627e456fa979df2242f81b5a87.tar.gz external_llvm-c59b33562c84cb627e456fa979df2242f81b5a87.tar.bz2 |
Rename DIFactory::InsertValue() as DIFactory::InsertDbgValueIntrinsic()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90807 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/DebugInfo.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index 33986e8..a6ccc29 100644 --- a/include/llvm/Analysis/DebugInfo.h +++ b/include/llvm/Analysis/DebugInfo.h @@ -662,13 +662,13 @@ namespace llvm { Instruction *InsertDeclare(llvm::Value *Storage, DIVariable D, Instruction *InsertBefore); - /// InsertValue - Insert a new llvm.dbg.value intrinsic call. - Instruction *InsertValue(llvm::Value *V, llvm::Value *Offset, - DIVariable D, BasicBlock *InsertAtEnd); + /// InsertDbgValueIntrinsic - Insert a new llvm.dbg.value intrinsic call. + Instruction *InsertDbgValueIntrinsic(llvm::Value *V, llvm::Value *Offset, + DIVariable D, BasicBlock *InsertAtEnd); - /// InsertValue - Insert a new llvm.dbg.value intrinsic call. - Instruction *InsertValue(llvm::Value *V, llvm::Value *Offset, - DIVariable D, Instruction *InsertBefore); + /// InsertDbgValueIntrinsic - Insert a new llvm.dbg.value intrinsic call. + Instruction *InsertDbgValueIntrinsic(llvm::Value *V, llvm::Value *Offset, + DIVariable D, Instruction *InsertBefore); private: Constant *GetTagConstant(unsigned TAG); }; |