]> granicus.if.org Git - clang/commitdiff
Fix a typo.
authorLauro Ramos Venancio <lauro.venancio@gmail.com>
Tue, 22 Jan 2008 22:38:35 +0000 (22:38 +0000)
committerLauro Ramos Venancio <lauro.venancio@gmail.com>
Tue, 22 Jan 2008 22:38:35 +0000 (22:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46259 91177308-0d34-0410-b5e6-96231b3b80d8

CodeGen/CGExpr.cpp

index 9abf1a4271081a98b6a40270f0f661e92e559d42..04f3f94fad62fe9f0ec20fb4a165f32eb671e856 100644 (file)
@@ -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();