diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2008-12-13 22:20:28 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2008-12-13 22:20:28 +0000 |
commit | aaa63a761c6671a08e3f4f463435b72739fa194b (patch) | |
tree | 4ed3ba9e6973946378a7802441e18e217cad57f4 /lib/AST/StmtSerialization.cpp | |
parent | 6eddeb153415049c7b62de4b45385a759a6906c6 (diff) |
Patch for ObjCIvarRefExpr containing the field
matching the storage layout for this ivar
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60996 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/StmtSerialization.cpp')
-rw-r--r-- | lib/AST/StmtSerialization.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/StmtSerialization.cpp b/lib/AST/StmtSerialization.cpp index 9b6207be2b..aea3d99f19 100644 --- a/lib/AST/StmtSerialization.cpp +++ b/lib/AST/StmtSerialization.cpp @@ -1162,7 +1162,7 @@ void ObjCIvarRefExpr::EmitImpl(Serializer& S) const { ObjCIvarRefExpr* ObjCIvarRefExpr::CreateImpl(Deserializer& D, ASTContext& C) { SourceLocation Loc = SourceLocation::ReadVal(D); QualType T = QualType::ReadVal(D); - ObjCIvarRefExpr* dr = new ObjCIvarRefExpr(NULL,T,Loc); + ObjCIvarRefExpr* dr = new ObjCIvarRefExpr(NULL,NULL,T,Loc); D.ReadPtr(dr->D,false); return dr; } |