From 60509af49add1fedf59d0e117c90c273b70fdaed Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Mon, 9 Sep 2013 14:48:42 +0000 Subject: Fix constructor-related typos. Noticed by Roman Divacky. llvm-svn: 190311 --- clang/lib/CodeGen/CGCall.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clang/lib/CodeGen/CGCall.cpp') diff --git a/clang/lib/CodeGen/CGCall.cpp b/clang/lib/CodeGen/CGCall.cpp index 8a672795922..806f7b86d93 100644 --- a/clang/lib/CodeGen/CGCall.cpp +++ b/clang/lib/CodeGen/CGCall.cpp @@ -175,7 +175,7 @@ CodeGenTypes::arrangeCXXMethodType(const CXXRecordDecl *RD, /// constructor or destructor. const CGFunctionInfo & CodeGenTypes::arrangeCXXMethodDeclaration(const CXXMethodDecl *MD) { - assert(!isa(MD) && "wrong method for contructors!"); + assert(!isa(MD) && "wrong method for constructors!"); assert(!isa(MD) && "wrong method for destructors!"); CanQual prototype = GetFormalType(MD); -- cgit v1.2.3