[Webassembly][NFC] Fix typo in comment
This commit is contained in:
parent
71d97df6af
commit
ff937a82f1
|
@ -893,7 +893,7 @@ void llvm::getLibcallSignature(const WebAssemblySubtarget &Subtarget,
|
|||
}
|
||||
}
|
||||
|
||||
// TODO: If the RTLIB::Libcall-taking flavor of GetSignature remains unsed
|
||||
// TODO: If the RTLIB::Libcall-taking flavor of GetSignature remains unused
|
||||
// other than here, just roll its logic into this version.
|
||||
void llvm::getLibcallSignature(const WebAssemblySubtarget &Subtarget,
|
||||
StringRef Name,
|
||||
|
@ -904,9 +904,9 @@ void llvm::getLibcallSignature(const WebAssemblySubtarget &Subtarget,
|
|||
auto Val = Map.find(Name);
|
||||
#ifndef NDEBUG
|
||||
if (Val == Map.end()) {
|
||||
auto message =
|
||||
auto Message =
|
||||
std::string("unexpected runtime library name: ") + std::string(Name);
|
||||
llvm_unreachable(message.c_str());
|
||||
llvm_unreachable(Message.c_str());
|
||||
}
|
||||
#endif
|
||||
return getLibcallSignature(Subtarget, Val->second, Rets, Params);
|
||||
|
|
Loading…
Reference in New Issue
Block a user