diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-07-13 19:25:18 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-07-13 19:25:18 +0000 |
commit | ca089b24d48ef6fa8da2d0bb8c25bb802c4a95c0 (patch) | |
tree | 3a28a772df9b17aef34f49e3c727965ad28c0c93 /tools/llvm-c-test | |
parent | 9df3605dea17e84f8183581f6103bd0c79e2a606 (diff) |
Notes
Diffstat (limited to 'tools/llvm-c-test')
-rw-r--r-- | tools/llvm-c-test/echo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/llvm-c-test/echo.cpp b/tools/llvm-c-test/echo.cpp index 52ce85c57782..966c0083bf87 100644 --- a/tools/llvm-c-test/echo.cpp +++ b/tools/llvm-c-test/echo.cpp @@ -765,7 +765,7 @@ static void declare_symbols(LLVMModuleRef Src, LLVMModuleRef M) { LLVMValueRef Next = nullptr; if (!Begin) { if (End != nullptr) - report_fatal_error("Range has an end but no begining"); + report_fatal_error("Range has an end but no beginning"); goto FunDecl; } @@ -794,7 +794,7 @@ FunDecl: End = LLVMGetLastFunction(Src); if (!Begin) { if (End != nullptr) - report_fatal_error("Range has an end but no begining"); + report_fatal_error("Range has an end but no beginning"); return; } @@ -844,7 +844,7 @@ static void clone_symbols(LLVMModuleRef Src, LLVMModuleRef M) { LLVMValueRef Next = nullptr; if (!Begin) { if (End != nullptr) - report_fatal_error("Range has an end but no begining"); + report_fatal_error("Range has an end but no beginning"); goto FunClone; } @@ -885,7 +885,7 @@ FunClone: End = LLVMGetLastFunction(Src); if (!Begin) { if (End != nullptr) - report_fatal_error("Range has an end but no begining"); + report_fatal_error("Range has an end but no beginning"); return; } |