mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-26 12:20:42 +00:00
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
This commit is contained in:
@@ -256,12 +256,12 @@ bool TGLexer::LexInclude() {
|
||||
std::string Filename = CurStrVal;
|
||||
|
||||
// Try to find the file.
|
||||
MemoryBuffer *NewBuf = MemoryBuffer::getFile(&Filename[0], Filename.size());
|
||||
MemoryBuffer *NewBuf = MemoryBuffer::getFile(Filename.c_str());
|
||||
|
||||
// If the file didn't exist directly, see if it's in an include path.
|
||||
for (unsigned i = 0, e = IncludeDirectories.size(); i != e && !NewBuf; ++i) {
|
||||
std::string IncFile = IncludeDirectories[i] + "/" + Filename;
|
||||
NewBuf = MemoryBuffer::getFile(&IncFile[0], IncFile.size());
|
||||
NewBuf = MemoryBuffer::getFile(IncFile.c_str());
|
||||
}
|
||||
|
||||
if (NewBuf == 0) {
|
||||
|
||||
Reference in New Issue
Block a user