git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43281 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2007-10-24 00:28:49 +00:00
Родитель 655bf3df1f
Коммит 977f14e1ab
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -385,7 +385,7 @@ EmitOCUVectorElementExpr(const OCUVectorElementExpr *E) {
LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) { LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
// FIXME: Handle union members. // FIXME: Handle union members.
if (E->getBase()->getType()->getAsUnionType()) { if (E->getType()->isUnionType()) {
fprintf(stderr, "Unimplemented lvalue expr!\n"); fprintf(stderr, "Unimplemented lvalue expr!\n");
E->dump(getContext().SourceMgr); E->dump(getContext().SourceMgr);
llvm::Type *Ty = llvm::PointerType::get(ConvertType(E->getType())); llvm::Type *Ty = llvm::PointerType::get(ConvertType(E->getType()));