From: Richard Smith Date: Thu, 20 Jun 2013 23:03:35 +0000 (+0000) Subject: Fix typo in comment. Patch by Matthew Dempsky! X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14b0e4b4d55111e2b00db0072d20f4a8209fa5a4;p=clang Fix typo in comment. Patch by Matthew Dempsky! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184495 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGException.cpp b/lib/CodeGen/CGException.cpp index b01fdd4b26..0c2cfc4c07 100644 --- a/lib/CodeGen/CGException.cpp +++ b/lib/CodeGen/CGException.cpp @@ -89,7 +89,7 @@ static llvm::Constant *getEndCatchFn(CodeGenModule &CGM) { } static llvm::Constant *getUnexpectedFn(CodeGenModule &CGM) { - // void __cxa_call_unexepcted(void *thrown_exception); + // void __cxa_call_unexpected(void *thrown_exception); llvm::FunctionType *FTy = llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);