diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-01 18:04:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-01 18:04:03 +0000 |
commit | 6f2ffdb73f9553b3021863bf60ee26bb8c099eb7 (patch) | |
tree | a80cea5404f45341b799001f8ecd061867fdf9e2 /llvm/lib/Debugger/Debugger.cpp | |
parent | 5db870c90409eebff58ce199ea625d880eb10b20 (diff) | |
download | bcm5719-llvm-6f2ffdb73f9553b3021863bf60ee26bb8c099eb7.tar.gz bcm5719-llvm-6f2ffdb73f9553b3021863bf60ee26bb8c099eb7.zip |
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.
llvm-svn: 49041
Diffstat (limited to 'llvm/lib/Debugger/Debugger.cpp')
-rw-r--r-- | llvm/lib/Debugger/Debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Debugger/Debugger.cpp b/llvm/lib/Debugger/Debugger.cpp index e8194d941f0..78f48f6f731 100644 --- a/llvm/lib/Debugger/Debugger.cpp +++ b/llvm/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; |