commit | 5e25ee8a1fcf8288d00d731b0f7ab7976f33b123 | [log] [tgz] |
---|---|---|
author | Craig Topper <craig.topper@gmail.com> | Sun Feb 05 08:31:47 2012 +0000 |
committer | Craig Topper <craig.topper@gmail.com> | Sun Feb 05 08:31:47 2012 +0000 |
tree | 70eb3742751eddfc9f934fdc193f2ee4dae2ea7b | |
parent | 69f44692bf5fea1d908fc06487e173837d06ea58 [diff] [blame] |
Convert assert(0) to llvm_unreachable git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149816 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/RegAllocPBQP.cpp b/lib/CodeGen/RegAllocPBQP.cpp index f8b0b9f..4715263 100644 --- a/lib/CodeGen/RegAllocPBQP.cpp +++ b/lib/CodeGen/RegAllocPBQP.cpp
@@ -529,7 +529,7 @@ // We need another round if spill intervals were added. anotherRoundNeeded |= !LRE.empty(); } else { - assert(false && "Unknown allocation option."); + llvm_unreachable("Unknown allocation option."); } }