summaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGCall.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-09-25 21:02:23 +0000
committerDevang Patel <dpatel@apple.com>2008-09-25 21:02:23 +0000
commit761d7f78e2dac7ea5f35828c2271e60d91e106ce (patch)
treed3a40e4906078aa98ef796a56a9f50ce9ad71f88 /lib/CodeGen/CGCall.h
parent27783eb8a030afd153280a15afdede29819d90d2 (diff)
downloadclang-761d7f78e2dac7ea5f35828c2271e60d91e106ce.tar.gz
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/CGCall.h')
-rw-r--r--lib/CodeGen/CGCall.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGCall.h b/lib/CodeGen/CGCall.h
index 53e20ba599..744344a7ac 100644
--- a/lib/CodeGen/CGCall.h
+++ b/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.