aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Bitcode/Reader/BitcodeReader.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-08-26 21:49:01 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-08-26 21:49:01 +0000
commitd96d553d76b56496e73aa30910d81f0d692f36fc (patch)
treee88f2eeb131aca32e87c1a37891c47e89106a361 /llvm/lib/Bitcode/Reader/BitcodeReader.h
parent59953f0dbea2678f1ad59ac75c871a888e3a9875 (diff)
downloadllvm-d96d553d76b56496e73aa30910d81f0d692f36fc.zip
llvm-d96d553d76b56496e73aa30910d81f0d692f36fc.tar.gz
llvm-d96d553d76b56496e73aa30910d81f0d692f36fc.tar.bz2
Pass a MemoryBufferRef when we can avoid taking ownership.
The attached patch simplifies a few interfaces that don't need to take ownership of a buffer. For example, both parseAssembly and parseBitcodeFile will parse the entire buffer before returning. There is no need to take ownership. Using a MemoryBufferRef makes it obvious in the type signature that there is no ownership transfer. llvm-svn: 216488
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.h')
-rw-r--r--llvm/lib/Bitcode/Reader/BitcodeReader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.h b/llvm/lib/Bitcode/Reader/BitcodeReader.h
index 6d4e0a2..c952566 100644
--- a/llvm/lib/Bitcode/Reader/BitcodeReader.h
+++ b/llvm/lib/Bitcode/Reader/BitcodeReader.h
@@ -221,7 +221,7 @@ public:
void FreeState();
- void releaseBuffer() override;
+ void releaseBuffer();
bool isMaterializable(const GlobalValue *GV) const override;
bool isDematerializable(const GlobalValue *GV) const override;