[lld] r263357 - "Windows" is a product name, so it should be spelled correctly.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 12 19:17:43 PST 2016
Author: ruiu
Date: Sat Mar 12 21:17:42 2016
New Revision: 263357
URL: http://llvm.org/viewvc/llvm-project?rev=263357&view=rev
Log:
"Windows" is a product name, so it should be spelled correctly.
Modified:
lld/trunk/ELF/Driver.cpp
Modified: lld/trunk/ELF/Driver.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Driver.cpp?rev=263357&r1=263356&r2=263357&view=diff
==============================================================================
--- lld/trunk/ELF/Driver.cpp (original)
+++ lld/trunk/ELF/Driver.cpp Sat Mar 12 21:17:42 2016
@@ -61,7 +61,7 @@ static std::pair<ELFKind, uint16_t> pars
if (S == "aarch64linux")
return {ELF64LEKind, EM_AARCH64};
if (S == "i386pe" || S == "i386pep" || S == "thumb2pe")
- error("windows targets are not supported on the ELF frontend: " + S);
+ error("Windows targets are not supported on the ELF frontend: " + S);
else
error("unknown emulation: " + S);
return {ELFNoneKind, 0};
More information about the llvm-commits
mailing list