[llvm] r244259 - Update comments.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 6 13:05:28 PDT 2015


Author: ruiu
Date: Thu Aug  6 15:05:27 2015
New Revision: 244259

URL: http://llvm.org/viewvc/llvm-project?rev=244259&view=rev
Log:
Update comments.

Modified:
    llvm/trunk/test/Object/nm-pe-image.test

Modified: llvm/trunk/test/Object/nm-pe-image.test
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Object/nm-pe-image.test?rev=244259&r1=244258&r2=244259&view=diff
==============================================================================
--- llvm/trunk/test/Object/nm-pe-image.test (original)
+++ llvm/trunk/test/Object/nm-pe-image.test Thu Aug  6 15:05:27 2015
@@ -2,7 +2,7 @@ The executable was generated like so:
 $ cat t.c
 int main() { return 0; }
 $ clang --target=i686-windows -c t.c -o t.o
-$ lld-link2 t.o -out:t.exe -entry:main -debug
+$ lld-link t.o -out:t.exe -entry:main -debug
 
 It has a mingw-style symbol table in the executable, which MSVC-produced images
 don't have.
@@ -19,7 +19,7 @@ The DLL was generated like so:
 $ cat t.c
 int DllMain(void *mod, long reason, void *reserved) { return 1; }
 $ clang --target=i686-windows -c t.c -o t.o
-$ lld-link2 t.o -out:t.exe -entry:DllMain -debug -dll
+$ lld-link t.o -out:t.exe -entry:DllMain -debug -dll
 
 
 RUN: llvm-nm %p/Inputs/main-ret-zero-pe-i386.dll \




More information about the llvm-commits mailing list