commit | 5163a8f53ebb5ba424ff69de30ab1d35ba60fe70 | [log] [tgz] |
---|---|---|
author | Evan Cheng <evan.cheng@apple.com> | Mon Oct 22 19:42:28 2007 +0000 |
committer | Evan Cheng <evan.cheng@apple.com> | Mon Oct 22 19:42:28 2007 +0000 |
tree | 89c13d857a516bc5f231abe51a97de5c747926f7 | |
parent | fee916334a228aed146202f6a706efa95d76d63c [diff] [blame] |
Add missing paratheses. llvm-svn: 43227
diff --git a/llvm/lib/CodeGen/RegAllocLocal.cpp b/llvm/lib/CodeGen/RegAllocLocal.cpp index 6454900..456c457 100644 --- a/llvm/lib/CodeGen/RegAllocLocal.cpp +++ b/llvm/lib/CodeGen/RegAllocLocal.cpp
@@ -618,7 +618,7 @@ // Unallocatable register dead, ignore. continue; } else { - assert(!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1 && + assert((!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1) && "Silently clearing a virtual register?"); }