aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/AsmParser/Parser.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
commit6f2ffdb73f9553b3021863bf60ee26bb8c099eb7 (patch)
treea80cea5404f45341b799001f8ecd061867fdf9e2 /llvm/lib/AsmParser/Parser.cpp
parent5db870c90409eebff58ce199ea625d880eb10b20 (diff)
downloadllvm-6f2ffdb73f9553b3021863bf60ee26bb8c099eb7.zip
llvm-6f2ffdb73f9553b3021863bf60ee26bb8c099eb7.tar.gz
llvm-6f2ffdb73f9553b3021863bf60ee26bb8c099eb7.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. llvm-svn: 49041
Diffstat (limited to 'llvm/lib/AsmParser/Parser.cpp')
-rw-r--r--llvm/lib/AsmParser/Parser.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/AsmParser/Parser.cpp b/llvm/lib/AsmParser/Parser.cpp
index 157a43b..0005e11 100644
--- a/llvm/lib/AsmParser/Parser.cpp
+++ b/llvm/lib/AsmParser/Parser.cpp
@@ -22,8 +22,7 @@ ParseError* TheParseError = 0; /// FIXME: Not threading friendly
Module *llvm::ParseAssemblyFile(const std::string &Filename, ParseError* Err) {
std::string ErrorStr;
- MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(&Filename[0], Filename.size(),
- &ErrorStr);
+ MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrorStr);
if (F == 0) {
if (Err)
Err->setError(Filename, "Could not open input file '" + Filename + "'");