diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-12-22 00:37:52 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-12-22 00:37:52 +0000 |
commit | c79e42c5ce2ce0e6d6f13f99a2d75f4c205ab8f3 (patch) | |
tree | 304fce3bcca7d9c6e5438f0dd6933905a7d50481 /llvm/utils/TableGen | |
parent | c632467e2b584f5502743edbb63db717651416a5 (diff) | |
download | bcm5719-llvm-c79e42c5ce2ce0e6d6f13f99a2d75f4c205ab8f3.tar.gz bcm5719-llvm-c79e42c5ce2ce0e6d6f13f99a2d75f4c205ab8f3.zip |
Change 'AttrVal' to 'AttrKind' to better reflect that it's a kind of attribute instead of the value of the attribute.
llvm-svn: 170972
Diffstat (limited to 'llvm/utils/TableGen')
-rw-r--r-- | llvm/utils/TableGen/IntrinsicEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/IntrinsicEmitter.cpp b/llvm/utils/TableGen/IntrinsicEmitter.cpp index faf34708800..c4549d13bf0 100644 --- a/llvm/utils/TableGen/IntrinsicEmitter.cpp +++ b/llvm/utils/TableGen/IntrinsicEmitter.cpp @@ -548,7 +548,7 @@ EmitAttributes(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) { OS << " AttributeWithIndex AWI[" << maxArgAttrs+1 << "];\n"; OS << " unsigned NumAttrs = 0;\n"; OS << " if (id != 0) {\n"; - OS << " SmallVector<Attribute::AttrVal, 8> AttrVec;\n"; + OS << " SmallVector<Attribute::AttrKind, 8> AttrVec;\n"; OS << " switch(IntrinsicsToAttributesMap[id - "; if (TargetOnly) OS << "Intrinsic::num_intrinsics"; |