summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Bitcode/Reader/BitReader.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2015-12-17 21:16:12 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2015-12-17 21:16:12 +0000
commit776e458d817f2bc12bd1c7b759b839a17c2f00c5 (patch)
treea88772f8a0bf1933c26c07d0e94d9fbab9693988 /llvm/lib/Bitcode/Reader/BitReader.cpp
parentea039c121b6cad3cfcfba2f9216251506e7888d6 (diff)
downloadbcm5719-llvm-776e458d817f2bc12bd1c7b759b839a17c2f00c5.tar.gz
bcm5719-llvm-776e458d817f2bc12bd1c7b759b839a17c2f00c5.zip
Drop function that are deprecated since 2010.
These functions were deprecated in r97608. llvm-svn: 255927
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitReader.cpp')
-rw-r--r--llvm/lib/Bitcode/Reader/BitReader.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitReader.cpp b/llvm/lib/Bitcode/Reader/BitReader.cpp
index beef56bec42..5ac068645c8 100644
--- a/llvm/lib/Bitcode/Reader/BitReader.cpp
+++ b/llvm/lib/Bitcode/Reader/BitReader.cpp
@@ -95,21 +95,3 @@ LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
return LLVMGetBitcodeModuleInContext(LLVMGetGlobalContext(), MemBuf, OutM,
OutMessage);
}
-
-/* Deprecated: Use LLVMGetBitcodeModuleInContext instead. */
-LLVMBool LLVMGetBitcodeModuleProviderInContext(LLVMContextRef ContextRef,
- LLVMMemoryBufferRef MemBuf,
- LLVMModuleProviderRef *OutMP,
- char **OutMessage) {
- return LLVMGetBitcodeModuleInContext(ContextRef, MemBuf,
- reinterpret_cast<LLVMModuleRef*>(OutMP),
- OutMessage);
-}
-
-/* Deprecated: Use LLVMGetBitcodeModule instead. */
-LLVMBool LLVMGetBitcodeModuleProvider(LLVMMemoryBufferRef MemBuf,
- LLVMModuleProviderRef *OutMP,
- char **OutMessage) {
- return LLVMGetBitcodeModuleProviderInContext(LLVMGetGlobalContext(), MemBuf,
- OutMP, OutMessage);
-}
OpenPOWER on IntegriCloud