diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-10-23 08:10:43 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-10-23 08:10:43 +0000 |
commit | 100c267249d1d03c4f96eede9877a4f9f54f2247 (patch) | |
tree | 1a51c4153e6acb6692b0ed191ab70ee5b8b92c19 /include/llvm/Function.h | |
parent | 2b3ef8b065ff655c52efe273e9b150db302e8a5a (diff) | |
download | external_llvm-100c267249d1d03c4f96eede9877a4f9f54f2247.zip external_llvm-100c267249d1d03c4f96eede9877a4f9f54f2247.tar.gz external_llvm-100c267249d1d03c4f96eede9877a4f9f54f2247.tar.bz2 |
Switch attribute macros to use 'LLVM_' as a prefix. We retain the old names
until other LLVM projects using these are cleaned up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117200 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Function.h')
-rw-r--r-- | include/llvm/Function.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 2b19fa5..9a0825a 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -152,7 +152,7 @@ public: /// The particular intrinsic functions which correspond to this value are /// defined in llvm/Intrinsics.h. /// - unsigned getIntrinsicID() const ATTRIBUTE_READONLY; + unsigned getIntrinsicID() const LLVM_ATTRIBUTE_READONLY; bool isIntrinsic() const { return getIntrinsicID() != 0; } /// getCallingConv()/setCallingConv(CC) - These method get and set the |