From: Devang Patel Date: Mon, 4 Oct 2010 22:13:18 +0000 (+0000) Subject: Add missing '}' :) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7fa8ab2e77f5703d0adf14e4d98f1edc1e66505d;p=clang Add missing '}' :) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@115568 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGExprScalar.cpp b/lib/CodeGen/CGExprScalar.cpp index ed9692a084..c7176cc2ab 100644 --- a/lib/CodeGen/CGExprScalar.cpp +++ b/lib/CodeGen/CGExprScalar.cpp @@ -733,6 +733,7 @@ Value *ScalarExprEmitter::VisitMemberExpr(MemberExpr *E) { if (FieldDecl *M = cast(E->getMemberDecl())) DI->getOrCreateRecordType(PTy->getPointeeType(), M->getParent()->getLocation()); + } return EmitLoadOfLValue(E); }