aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Debugger/Debugger.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-04-01 18:04:03 +0000
committerChris Lattner <sabre@nondot.org>2008-04-01 18:04:03 +0000
commitfc0036120cbfae4edfa372c36fb05f2756f5f0ee (patch)
tree1e533932de12cd50bf288f55438475ed736bdce8 /lib/Debugger/Debugger.cpp
parent6604139d700846b281dcbc37b449b13fc6be88a6 (diff)
downloadexternal_llvm-fc0036120cbfae4edfa372c36fb05f2756f5f0ee.zip
external_llvm-fc0036120cbfae4edfa372c36fb05f2756f5f0ee.tar.gz
external_llvm-fc0036120cbfae4edfa372c36fb05f2756f5f0ee.tar.bz2
Change the MemoryBuffer::getFile* methods to take just a pointer to the
start of a filename, not a filename+length. All clients can produce a null terminated name, and the system api's require null terminated strings anyway. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49041 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Debugger/Debugger.cpp')
-rw-r--r--lib/Debugger/Debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Debugger/Debugger.cpp b/lib/Debugger/Debugger.cpp
index e8194d9..78f48f6 100644
--- a/lib/Debugger/Debugger.cpp
+++ b/lib/Debugger/Debugger.cpp
@@ -47,7 +47,7 @@ std::string Debugger::getProgramPath() const {
static Module *
getMaterializedModuleProvider(const std::string &Filename) {
std::auto_ptr<MemoryBuffer> Buffer;
- Buffer.reset(MemoryBuffer::getFileOrSTDIN(&Filename[0], Filename.size()));
+ Buffer.reset(MemoryBuffer::getFileOrSTDIN(Filename.c_str()));
if (Buffer.get())
return ParseBitcodeFile(Buffer.get());
return 0;