Fix some warnings from Clang in release builds:
authorChandler Carruth <chandlerc@gmail.com>
Wed, 3 Aug 2011 23:07:27 +0000 (23:07 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Wed, 3 Aug 2011 23:07:27 +0000 (23:07 +0000)
commit32668ea7a290ee1cb6bfe8cd677cdd4e5df05b4d
treedd8dafffe48a4d0cdff25dbb8cf9a224920855e4
parent0767267790e5cc91ffe3cc318d22f043b2633b26
Fix some warnings from Clang in release builds:

lib/CodeGen/RegAllocGreedy.cpp:1176:18: warning: unused variable 'B' [-Wunused-variable]
    if (unsigned B = Cand.getBundles(BundleCand, BestCand)) {
                 ^
lib/CodeGen/RegAllocGreedy.cpp:1188:18: warning: unused variable 'B' [-Wunused-variable]
    if (unsigned B = Cand.getBundles(BundleCand, 0)) {
                 ^

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136831 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/RegAllocGreedy.cpp