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 | 88c54b82c1bc7193a92769992cbd1c8b9eb8d7ff (patch) | |
tree | ad61d56b991a735f7c5dfbfd16ea22aa4aa42c19 /llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp | |
parent | 9733158bfd79aa81c55bd3e3a6009874a597d351 (diff) | |
download | bcm5719-llvm-88c54b82c1bc7193a92769992cbd1c8b9eb8d7ff.tar.gz bcm5719-llvm-88c54b82c1bc7193a92769992cbd1c8b9eb8d7ff.zip |
Switch attribute macros to use 'LLVM_' as a prefix. We retain the old names
until other LLVM projects using these are cleaned up.
llvm-svn: 117200
Diffstat (limited to 'llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp b/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp index 389fd19a8ef..4a7c7719e15 100644 --- a/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp +++ b/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp @@ -102,8 +102,8 @@ namespace { friend bool operator<(const NEONLdStTableEntry &TE, unsigned PseudoOpc) { return TE.PseudoOpc < PseudoOpc; } - friend bool ATTRIBUTE_UNUSED operator<(unsigned PseudoOpc, - const NEONLdStTableEntry &TE) { + friend bool LLVM_ATTRIBUTE_UNUSED operator<(unsigned PseudoOpc, + const NEONLdStTableEntry &TE) { return PseudoOpc < TE.PseudoOpc; } }; |