From: Lauro Ramos Venancio Date: Tue, 22 Jan 2008 22:38:35 +0000 (+0000) Subject: Fix a typo. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=655398244fc839638fe1a3e0a27a15d5a6d7e0d8;p=clang Fix a typo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46259 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/CodeGen/CGExpr.cpp b/CodeGen/CGExpr.cpp index 9abf1a4271..04f3f94fad 100644 --- a/CodeGen/CGExpr.cpp +++ b/CodeGen/CGExpr.cpp @@ -241,7 +241,7 @@ void CodeGenFunction::EmitStoreThroughLValue(RValue Src, LValue Dst, if (Dst.isBitfield()) return EmitStoreThroughBitfieldLValue(Src, Dst, Ty); - assert(0 && "Unknown bitfield type"); + assert(0 && "Unknown LValue type"); } llvm::Value *DstAddr = Dst.getAddress();