diff options
author | Amaury Sechet <deadalnix@gmail.com> | 2016-05-23 16:38:25 +0000 |
---|---|---|
committer | Amaury Sechet <deadalnix@gmail.com> | 2016-05-23 16:38:25 +0000 |
commit | 000b227286a5c0979e118b6b8a1bd4d62dc58378 (patch) | |
tree | 186bded9cc9c7f6d0857a080851761dfd2da3022 /include | |
parent | 1386ead074e8e9028ae73c8106ccc3853d73bcf6 (diff) |
Extract renaming from D19181
Summary: This needs to get in before anything is released concerning attribute. If the old name gets in the wild, then we are stuck with it forever. Putting it in its own diff should getting that part at least in fast.
Reviewers: Wallbraker, whitequark, joker.eph, echristo, rafael, jyknight
Subscribers: llvm-commits, joker.eph
Differential Revision: http://reviews.llvm.org/D20417
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270452 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm-c/Core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index 7ec8b8cffff..674b93ffd5f 100644 --- a/include/llvm-c/Core.h +++ b/include/llvm-c/Core.h @@ -487,7 +487,7 @@ unsigned LLVMGetMDKindID(const char *Name, unsigned SLen); * NB: Attribute names and/or id are subject to change without * going through the C API deprecation cycle. */ -unsigned LLVMGetAttrKindID(const char *Name, size_t SLen); +unsigned LLVMGetAttributeKindForName(const char *Name, size_t SLen); /** * @} |