Removed Logically Dead Code
13698 if (!II) {
13699 Diag(DeclStart, diag::err_anonymous_property);
13700 return nullptr;
13701 }As we have already handled the case for II being NULL. So now further we take the value of II to be non-NULL making this condition here essentially true
13770 } else if (II) {
13771 PushOnScopeChains(NewPD, S);
13772 } elseand making this code logically dead
13772 } else 13773 Record->addDecl(NewPD);