Change xor to ^.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11054 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp
index f4b2a9b..d89aad0 100644
--- a/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -390,7 +390,7 @@
                         ++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);