From a560067ac9b7697316dbebfc63f62899ce023158 Mon Sep 17 00:00:00 2001 From: Timur Iskhodzhanov Date: Fri, 10 Oct 2014 12:52:58 +0000 Subject: [PATCH] Fix a small typo, NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219492 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp b/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp index b3fa2d56828..fa7d8ad9f53 100644 --- a/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp +++ b/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);