diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-01-29 04:21:28 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-01-29 04:21:28 +0000 |
commit | 8f3aacc8c4849c9e0e7a236954725fffdeb917a6 (patch) | |
tree | 61615d1ddb984732449d2ffca43acd8d7960748f /utils | |
parent | 8338a9d28c4a9d06b19b1c5df51e70182914e2df (diff) |
Propagate the spelling list index for an attribute across template instantiation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173768 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/ClangAttrEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/ClangAttrEmitter.cpp b/utils/TableGen/ClangAttrEmitter.cpp index d936e260b8..3530e7e738 100644 --- a/utils/TableGen/ClangAttrEmitter.cpp +++ b/utils/TableGen/ClangAttrEmitter.cpp @@ -937,7 +937,7 @@ void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS) { OS << ", "; (*ai)->writeCloneArgs(OS); } - OS << ");\n}\n\n"; + OS << ", getSpellingListIndex());\n}\n\n"; writePrettyPrintFunction(R, Args, OS); } |