From: Rui Ueyama Date: Thu, 6 Aug 2015 20:05:27 +0000 (+0000) Subject: Update comments. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=4752eae71b9d816713cd45c19319fa4bd21bde2c Update comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244259 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Object/nm-pe-image.test b/test/Object/nm-pe-image.test index f95aeebf727..d1ca5845ef6 100644 --- a/test/Object/nm-pe-image.test +++ b/test/Object/nm-pe-image.test @@ -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 \