From 7f01d209939c3a08c7d15ea145d7056dc138c23a Mon Sep 17 00:00:00 2001 From: Alexey Bataev Date: Mon, 16 Jul 2018 18:12:18 +0000 Subject: [OPENMP] Fix syntactic errors in error messages. Fixed spelling of the offloading error messages. llvm-svn: 337196 --- clang/lib/CodeGen/CGOpenMPRuntime.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clang/lib/CodeGen') diff --git a/clang/lib/CodeGen/CGOpenMPRuntime.cpp b/clang/lib/CodeGen/CGOpenMPRuntime.cpp index 1e37c894eea..d3488160404 100644 --- a/clang/lib/CodeGen/CGOpenMPRuntime.cpp +++ b/clang/lib/CodeGen/CGOpenMPRuntime.cpp @@ -3970,7 +3970,7 @@ void CGOpenMPRuntime::createOffloadEntriesAndInfoMetadata() { if (!CE->getID() || !CE->getAddress()) { unsigned DiagID = CGM.getDiags().getCustomDiagID( DiagnosticsEngine::Error, - "Offloading entry for target region is incorect: either the " + "Offloading entry for target region is incorrect: either the " "address or the ID is invalid."); CGM.getDiags().Report(DiagID); continue; @@ -3983,7 +3983,7 @@ void CGOpenMPRuntime::createOffloadEntriesAndInfoMetadata() { if (!CE->getAddress()) { unsigned DiagID = CGM.getDiags().getCustomDiagID( DiagnosticsEngine::Error, - "Offloading entry for declare target varible is inccorect: the " + "Offloading entry for declare target variable is incorrect: the " "address is invalid."); CGM.getDiags().Report(DiagID); continue; -- cgit v1.2.3