diff options
author | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-13 06:48:39 +0000 |
---|---|---|
committer | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-13 06:48:39 +0000 |
commit | e9dea6e61396fb9325b36c0d3bcf5217bb09b0cc (patch) | |
tree | f3a129f101cddd7b5de06d95bc080bffb2401b57 /llvm/examples | |
parent | f3de5eb7c6838e70ca56ece8a360437008aa073c (diff) | |
download | bcm5719-llvm-e9dea6e61396fb9325b36c0d3bcf5217bb09b0cc.tar.gz bcm5719-llvm-e9dea6e61396fb9325b36c0d3bcf5217bb09b0cc.zip |
fix typos in comments and error messges; NFC
llvm-svn: 307885
Diffstat (limited to 'llvm/examples')
-rw-r--r-- | llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h b/llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h index 90ae3d1041e..215ce03af99 100644 --- a/llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h +++ b/llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h @@ -115,7 +115,7 @@ private: return JITSymbol(SymAddr, JITSymbolFlags::Exported); #ifdef LLVM_ON_WIN32 - // For Windows retry without "_" at begining, as RTDyldMemoryManager uses + // For Windows retry without "_" at beginning, as RTDyldMemoryManager uses // GetProcAddress and standard libraries like msvcrt.dll use names // with and without "_" (for example "_itoa" but "sin"). if (Name.length() > 2 && Name[0] == '_') |