1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Avoid Wparentheses warning.

llvm-svn: 322526
This commit is contained in:
Simon Pilgrim 2018-01-15 22:40:06 +00:00
parent a8d108687b
commit 8a7237fd4f

View File

@ -10157,9 +10157,9 @@ X86InstrInfo::getExecutionDomain(const MachineInstr &MI) const {
uint16_t validDomains = 0;
if (domain) {
// Attempt to match for custom instructions.
if (validDomains = getExecutionDomainCustom(MI)) {
validDomains = getExecutionDomainCustom(MI);
if (validDomains)
return std::make_pair(domain, validDomains);
}
if (lookup(opcode, domain, ReplaceableInstrs)) {
validDomains = 0xe;