mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 06:12:18 +00:00
Silence VC++ warning about mixing intptr_t and bool, and about unused variable isL.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20697 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f4f6227989
commit
2413a68d2d
@ -85,7 +85,7 @@ class EquivalenceClasses {
|
|||||||
void setNext(const ECValue *NewNext) const {
|
void setNext(const ECValue *NewNext) const {
|
||||||
assert(getNext() == 0 && "Already has a next pointer!");
|
assert(getNext() == 0 && "Already has a next pointer!");
|
||||||
bool isL = isLeader();
|
bool isL = isLeader();
|
||||||
Next = (const ECValue*)((intptr_t)NewNext | isLeader());
|
Next = (const ECValue*)((intptr_t)NewNext | (intptr_t)isL);
|
||||||
}
|
}
|
||||||
public:
|
public:
|
||||||
ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1),
|
ECValue(const ECValue &RHS) : Leader(this), Next((ECValue*)(intptr_t)1),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user