Update comments.

llvm-svn: 244259
This commit is contained in:
Rui Ueyama 2015-08-06 20:05:27 +00:00
parent 1574b8ecfb
commit b9583d22eb
1 changed files with 2 additions and 2 deletions

View File

@ -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 \