[compiler-rt] r244638 - [windows] Use lld-link instead of lld-link2, the latter no longer exists
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 11 10:36:10 PDT 2015
Author: rnk
Date: Tue Aug 11 12:36:09 2015
New Revision: 244638
URL: http://llvm.org/viewvc/llvm-project?rev=244638&view=rev
Log:
[windows] Use lld-link instead of lld-link2, the latter no longer exists
The test passed for me locally because I had a stale copy of
lld-link2.exe.
Modified:
compiler-rt/trunk/test/asan/TestCases/Windows/fuse-lld.cc
Modified: compiler-rt/trunk/test/asan/TestCases/Windows/fuse-lld.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Windows/fuse-lld.cc?rev=244638&r1=244637&r2=244638&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Windows/fuse-lld.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Windows/fuse-lld.cc Tue Aug 11 12:36:09 2015
@@ -6,7 +6,7 @@
// FIXME: Test will fail until we add flags for requesting dwarf or cv.
// RUNX: %clangxx_asan -O2 %s -o %t.exe -fuse-ld=lld -Wl,-debug
// RUN: %clangxx_asan -c -O2 %s -o %t.o -gdwarf
-// RUN: lld-link2 %t.o -out:%t.exe -debug -defaultlib:libcmt %asan_lib %asan_cxx_lib
+// RUN: lld-link %t.o -out:%t.exe -debug -defaultlib:libcmt %asan_lib %asan_cxx_lib
// RUN: not %run %t.exe 2>&1 | FileCheck %s
#include <stdlib.h>
More information about the llvm-commits
mailing list