mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
[SystemZ] Make operator bool explicit. NFC.
llvm-svn: 219069
This commit is contained in:
parent
860521c88b
commit
a961a36aad
@ -47,7 +47,7 @@ struct Reference {
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator bool() const { return Def || Use; }
|
||||
LLVM_EXPLICIT operator bool() const { return Def || Use; }
|
||||
|
||||
// True if the register is defined or used in some form, either directly or
|
||||
// via a sub- or super-register.
|
||||
|
@ -633,7 +633,7 @@ struct LogicOp {
|
||||
LogicOp(unsigned regSize, unsigned immLSB, unsigned immSize)
|
||||
: RegSize(regSize), ImmLSB(immLSB), ImmSize(immSize) {}
|
||||
|
||||
operator bool() const { return RegSize; }
|
||||
LLVM_EXPLICIT operator bool() const { return RegSize; }
|
||||
|
||||
unsigned RegSize, ImmLSB, ImmSize;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user