mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Fix a likely bug in an assertion by adding parentheses around '||'. This bug
was found by a GCC warning. ;] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117199 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
086976d76c
commit
2b3ef8b065
@ -25,7 +25,7 @@ void LiveIntervalUnion::unify(LiveInterval &lvr) {
|
||||
// Add this live virtual register to the union
|
||||
LiveVirtRegs::iterator pos = std::upper_bound(lvrs_.begin(), lvrs_.end(),
|
||||
&lvr, less_ptr<LiveInterval>());
|
||||
assert(pos == lvrs_.end() || *pos != &lvr && "duplicate LVR insertion");
|
||||
assert((pos == lvrs_.end() || *pos != &lvr) && "duplicate LVR insertion");
|
||||
lvrs_.insert(pos, &lvr);
|
||||
// Insert each of the virtual register's live segments into the map
|
||||
SegmentIter segPos = segments_.begin();
|
||||
|
Loading…
Reference in New Issue
Block a user