diff options
author | Devang Patel <dpatel@apple.com> | 2008-09-25 21:02:23 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-09-25 21:02:23 +0000 |
commit | 761d7f78e2dac7ea5f35828c2271e60d91e106ce (patch) | |
tree | d3a40e4906078aa98ef796a56a9f50ce9ad71f88 /lib/CodeGen/CodeGenModule.h | |
parent | 27783eb8a030afd153280a15afdede29819d90d2 (diff) |
Large mechanical patch.
s/ParamAttr/Attribute/g
s/PAList/AttrList/g
s/FnAttributeWithIndex/AttributeWithIndex/g
s/FnAttr/Attribute/g
This sets the stage
- to implement function notes as function attributes and
- to distinguish between function attributes and return value attributes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index b47b1ca97f..0a4a78d33c 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -217,7 +217,7 @@ public: void SetMethodAttributes(const ObjCMethodDecl *MD, llvm::Function *F); - void SetFunctionParamAttrs(const Decl *D, + void SetFunctionAttributes(const Decl *D, const CGFunctionInfo &Info, llvm::Function *F); @@ -225,10 +225,10 @@ public: /// when used as a return type. bool ReturnTypeUsesSret(QualType RetTy); - void ConstructParamAttrList(const Decl *TargetDecl, + void ConstructAttributeList(const Decl *TargetDecl, const ArgTypeIterator begin, const ArgTypeIterator end, - ParamAttrListType &PAL); + AttributeListType &PAL); private: /// SetFunctionAttributesForDefinition - Set function attributes |