"Windows" is a product name, so it should be spelled correctly.

llvm-svn: 263357
This commit is contained in:
Rui Ueyama 2016-03-13 03:17:42 +00:00
parent 2039847062
commit 7f4a492f98
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ static std::pair<ELFKind, uint16_t> parseEmulation(StringRef S) {
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};