diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-06-20 23:03:35 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-06-20 23:03:35 +0000 |
| commit | 2f7aa1902655f48f8f61d3cd3a3239703386cdd1 (patch) | |
| tree | fa79661e1b40a3c53bd75080eb4cd8df088ad5ab | |
| parent | 7a5b940952312fe2ebbe91ab9524558f391c2abc (diff) | |
| download | bcm5719-llvm-2f7aa1902655f48f8f61d3cd3a3239703386cdd1.tar.gz bcm5719-llvm-2f7aa1902655f48f8f61d3cd3a3239703386cdd1.zip | |
Fix typo in comment. Patch by Matthew Dempsky!
llvm-svn: 184495
| -rw-r--r-- | clang/lib/CodeGen/CGException.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGException.cpp b/clang/lib/CodeGen/CGException.cpp index b01fdd4b264..0c2cfc4c07b 100644 --- a/clang/lib/CodeGen/CGException.cpp +++ b/clang/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); |

