Change xor to ^.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11054 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alkis Evlogimenos 2004-02-01 08:19:25 +00:00
parent 05e4e8a5d2
commit b0b0ebaac0

View File

@ -390,7 +390,7 @@ void LiveIntervals::joinIntervals()
++numJoined;
}
}
else if (MRegisterInfo::isPhysicalRegister(intA->reg) xor
else if (MRegisterInfo::isPhysicalRegister(intA->reg) ^
MRegisterInfo::isPhysicalRegister(intB->reg)) {
if (MRegisterInfo::isPhysicalRegister(intB->reg)) {
std::swap(regA, regB);