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/Transforms/Utils/LowerSwitch.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/Transforms/Utils/LowerSwitch.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LowerSwitch.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/LowerSwitch.cpp b/llvm/lib/Transforms/Utils/LowerSwitch.cpp index 6db53f44d25..914a439718d 100644 --- a/llvm/lib/Transforms/Utils/LowerSwitch.cpp +++ b/llvm/lib/Transforms/Utils/LowerSwitch.cpp @@ -109,7 +109,8 @@ bool LowerSwitch::runOnFunction(Function &F) { // operator<< - Used for debugging purposes. // static raw_ostream& operator<<(raw_ostream &O, - const LowerSwitch::CaseVector &C) ATTRIBUTE_USED; + const LowerSwitch::CaseVector &C) + LLVM_ATTRIBUTE_USED; static raw_ostream& operator<<(raw_ostream &O, const LowerSwitch::CaseVector &C) { O << "["; |