diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2014-10-10 12:52:58 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2014-10-10 12:52:58 +0000 |
commit | 7edfc5948bdb66721a6eb81e389f0463a5a7060a (patch) | |
tree | dc36fa67a88f2fe9659da83d587f69c8d60b505c /llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp | |
parent | c6924d8690e343d82a32948b07910420070d84b1 (diff) | |
download | bcm5719-llvm-7edfc5948bdb66721a6eb81e389f0463a5a7060a.tar.gz bcm5719-llvm-7edfc5948bdb66721a6eb81e389f0463a5a7060a.zip |
Fix a small typo, NFC
llvm-svn: 219492
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp b/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp index b3fa2d56828..fa7d8ad9f53 100644 --- a/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp @@ -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); |