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 | 038112a4e0a9afd656f415ab397a230ae5921627 (patch) | |
tree | 1e533932de12cd50bf288f55438475ed736bdce8 /tools/llvm-bcanalyzer | |
parent | 8eedc9ee2ca3bb489957de68e3f907c88ca39efc (diff) |
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 'tools/llvm-bcanalyzer')
-rw-r--r-- | tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp b/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp index c6518a24f4..a7e27e3e08 100644 --- a/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp +++ b/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp @@ -374,11 +374,7 @@ static void PrintSize(double Bits) { /// AnalyzeBitcode - Analyze the bitcode file specified by InputFilename. static int AnalyzeBitcode() { // Read the input file. - MemoryBuffer *Buffer; - if (InputFilename == "-") - Buffer = MemoryBuffer::getSTDIN(); - else - Buffer = MemoryBuffer::getFile(&InputFilename[0], InputFilename.size()); + MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str()); if (Buffer == 0) return Error("Error reading '" + InputFilename + "'."); |