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 | 322300d1c21e5bfe89dbdfa6ae23dde628f8d9e0 (patch) | |
tree | ebf365d6aaad343073d8de67c21db8c77ea088e9 /clang/lib/CodeGen/CGCall.h | |
parent | 4c758ea3e0d31e56773ef74ecac1775c641377e5 (diff) | |
download | bcm5719-llvm-322300d1c21e5bfe89dbdfa6ae23dde628f8d9e0.tar.gz bcm5719-llvm-322300d1c21e5bfe89dbdfa6ae23dde628f8d9e0.zip |
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.
llvm-svn: 56623
Diffstat (limited to 'clang/lib/CodeGen/CGCall.h')
-rw-r--r-- | clang/lib/CodeGen/CGCall.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGCall.h b/clang/lib/CodeGen/CGCall.h index 53e20ba5996..744344a7acc 100644 --- a/clang/lib/CodeGen/CGCall.h +++ b/clang/lib/CodeGen/CGCall.h @@ -21,7 +21,7 @@ namespace llvm { class Function; - struct FnAttributeWithIndex; + struct AttributeWithIndex; class Value; template<typename T, unsigned> class SmallVector; @@ -35,7 +35,7 @@ namespace clang { class VarDecl; namespace CodeGen { - typedef llvm::SmallVector<llvm::FnAttributeWithIndex, 8> ParamAttrListType; + typedef llvm::SmallVector<llvm::AttributeWithIndex, 8> AttributeListType; /// CallArgList - Type for representing both the value and type of /// arguments in a call. |