mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-16 08:08:01 +00:00
ScheduleDAGInstrs.h:155: warning: suggest parentheses around &&' within
||'.
llvm-svn: 151355
This commit is contained in:
parent
5c9371d10f
commit
04735e1180
@ -152,7 +152,7 @@ namespace llvm {
|
||||
/// Otherwise map the register and return an empty SUnits vector.
|
||||
std::vector<SUnit *> &operator[](unsigned Reg) {
|
||||
bool New = PhysRegSet.insert(Reg).second;
|
||||
assert(!New || SUnits[Reg].empty() && "stale SUnits vector");
|
||||
assert((!New || SUnits[Reg].empty()) && "stale SUnits vector");
|
||||
(void)New;
|
||||
return SUnits[Reg];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user