From: David Majnemer Date: Wed, 15 Oct 2014 07:57:38 +0000 (+0000) Subject: CodeGen: Fix a typo in a comment X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=398bebf8428836cb68d655f6b7469097d5cff105;p=clang CodeGen: Fix a typo in a comment No functionality change intended. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@219780 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGRecordLayoutBuilder.cpp b/lib/CodeGen/CGRecordLayoutBuilder.cpp index b2a47476f7..9e7efa083a 100644 --- a/lib/CodeGen/CGRecordLayoutBuilder.cpp +++ b/lib/CodeGen/CGRecordLayoutBuilder.cpp @@ -285,7 +285,7 @@ void CGRecordLowering::lowerUnion() { // Iterate through the fields setting bitFieldInfo and the Fields array. Also // locate the "most appropriate" storage type. The heuristic for finding the // storage type isn't necessary, the first (non-0-length-bitfield) field's - // type would work fine and be simpler but would be differen than what we've + // type would work fine and be simpler but would be different than what we've // been doing and cause lit tests to change. for (const auto *Field : D->fields()) { if (Field->isBitField()) {