[llvm] r219492 - Fix a small typo, NFC
Timur Iskhodzhanov
timurrrr at google.com
Fri Oct 10 05:52:59 PDT 2014
Author: timurrrr
Date: Fri Oct 10 07:52:58 2014
New Revision: 219492
URL: http://llvm.org/viewvc/llvm-project?rev=219492&view=rev
Log:
Fix a small typo, NFC
Modified:
llvm/trunk/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp
Modified: llvm/trunk/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp?rev=219492&r1=219491&r2=219492&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp Fri Oct 10 07:52:58 2014
@@ -238,7 +238,7 @@ void WinCodeViewLineTables::endModule()
Asm->EmitInt32(8 * NumFilenames);
for (size_t I = 0, E = FileNameRegistry.Filenames.size(); I != E; ++I) {
StringRef Filename = FileNameRegistry.Filenames[I];
- // For each unique filename, just write it's offset in the string table.
+ // For each unique filename, just write its offset in the string table.
Asm->EmitInt32(FileNameRegistry.Infos[Filename].StartOffset);
// The function name offset is not followed by any additional data.
Asm->EmitInt32(0);
More information about the llvm-commits
mailing list