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 | 447831acae5ac8951fa1b3f72b88fff0d1a18515 (patch) | |
tree | a68e2d9e79cff6732d5949a40a0b112d6ce33db4 /llvm/include/llvm-c | |
parent | 2ab3d20819ec75e188108244e0e41508d4b7d403 (diff) | |
download | bcm5719-llvm-447831acae5ac8951fa1b3f72b88fff0d1a18515.tar.gz bcm5719-llvm-447831acae5ac8951fa1b3f72b88fff0d1a18515.zip |
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
llvm-svn: 270452
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/Core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index 7ec8b8cffff..674b93ffd5f 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/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); /** * @} |