diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2014-03-13 19:11:50 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2014-03-13 19:11:50 +0000 |
commit | d174edffa06a8212b784dbecdb4939ff300793a7 (patch) | |
tree | 86ebe15dc122b233ec564428a4b6a6d3a5fb23c4 /clang/lib/CodeGen/CGObjCMac.cpp | |
parent | e649335b1ec3bde940fb69a4244ed8ba38059b8d (diff) | |
download | bcm5719-llvm-d174edffa06a8212b784dbecdb4939ff300793a7.tar.gz bcm5719-llvm-d174edffa06a8212b784dbecdb4939ff300793a7.zip |
Renaming the recently-created (r203830) props() range API to properties() for clarity.
llvm-svn: 203835
Diffstat (limited to 'clang/lib/CodeGen/CGObjCMac.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGObjCMac.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGObjCMac.cpp b/clang/lib/CodeGen/CGObjCMac.cpp index 2296f0a30ec..1ee74f90f28 100644 --- a/clang/lib/CodeGen/CGObjCMac.cpp +++ b/clang/lib/CodeGen/CGObjCMac.cpp @@ -2778,7 +2778,7 @@ PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*,16> &PropertySet, for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(), E = Proto->protocol_end(); P != E; ++P) PushProtocolProperties(PropertySet, Properties, Container, (*P), ObjCTypes); - for (const auto *PD : Proto->props()) { + for (const auto *PD : Proto->properties()) { if (!PropertySet.insert(PD->getIdentifier())) continue; llvm::Constant *Prop[] = { @@ -2807,7 +2807,7 @@ llvm::Constant *CGObjCCommonMac::EmitPropertyList(Twine Name, const ObjCCommonTypesHelper &ObjCTypes) { SmallVector<llvm::Constant *, 16> Properties; llvm::SmallPtrSet<const IdentifierInfo*, 16> PropertySet; - for (const auto *PD : OCD->props()) { + for (const auto *PD : OCD->properties()) { PropertySet.insert(PD->getIdentifier()); llvm::Constant *Prop[] = { GetPropertyName(PD->getIdentifier()), |