forked from OSchip/llvm-project
"Windows" is a product name, so it should be spelled correctly.
llvm-svn: 263357
This commit is contained in:
parent
2039847062
commit
7f4a492f98
|
@ -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};
|
||||
|
|
Loading…
Reference in New Issue