diff options
author | Devang Patel <dpatel@apple.com> | 2010-10-04 22:13:18 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-10-04 22:13:18 +0000 |
commit | 7fa8ab2e77f5703d0adf14e4d98f1edc1e66505d (patch) | |
tree | 5b2f2b32a973e5dec8102acf4e616020dc179622 /lib/CodeGen/CGExprScalar.cpp | |
parent | 78ba3d46388f17b4fc5e63ed23b746dd4dea9547 (diff) |
Add missing '}' :)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@115568 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprScalar.cpp')
-rw-r--r-- | lib/CodeGen/CGExprScalar.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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<FieldDecl>(E->getMemberDecl())) DI->getOrCreateRecordType(PTy->getPointeeType(), M->getParent()->getLocation()); + } return EmitLoadOfLValue(E); } |