зеркало из https://github.com/microsoft/clang-1.git
Use isUnionType() predicate.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43281 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
655bf3df1f
Коммит
977f14e1ab
|
@ -385,7 +385,7 @@ EmitOCUVectorElementExpr(const OCUVectorElementExpr *E) {
|
|||
LValue CodeGenFunction::EmitMemberExpr(const MemberExpr *E) {
|
||||
|
||||
// FIXME: Handle union members.
|
||||
if (E->getBase()->getType()->getAsUnionType()) {
|
||||
if (E->getType()->isUnionType()) {
|
||||
fprintf(stderr, "Unimplemented lvalue expr!\n");
|
||||
E->dump(getContext().SourceMgr);
|
||||
llvm::Type *Ty = llvm::PointerType::get(ConvertType(E->getType()));
|
||||
|
|
Загрузка…
Ссылка в новой задаче