Fix comment.
authorRui Ueyama <ruiu@google.com>
Fri, 27 Dec 2013 02:51:53 +0000 (02:51 +0000)
committerRui Ueyama <ruiu@google.com>
Fri, 27 Dec 2013 02:51:53 +0000 (02:51 +0000)
llvm-svn: 198066

lld/lib/Driver/WinLinkDriver.cpp

index 0a77ed4..ba1d9f5 100644 (file)
@@ -895,10 +895,10 @@ WinLinkDriver::parse(int argc, const char *argv[], PECOFFLinkingContext &ctx,
 
       // Mangle the symbol name only if it is reading user-supplied command line
       // arguments. Because the symbol name in the .drectve section is already
-      // mangled by the compiler, we shouldn't add a leading undescore here.
-      // It's odd that the command line option has different semantics in the
-      // .drectve section, but this behavior is needed for compatibility with
-      // MSVC's link.exe.
+      // mangled by the compiler, we shouldn't add a leading underscore in that
+      // case. It's odd that the command line option has different semantics in
+      // the .drectve section, but this behavior is needed for compatibility
+      // with MSVC's link.exe.
       if (!isReadingDirectiveSection)
         desc.name = ctx.decorateSymbol(desc.name);
       ctx.addDllExport(desc);