From: Alkis Evlogimenos Date: Sun, 1 Feb 2004 08:19:25 +0000 (+0000) Subject: Change xor to ^. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b0b0ebaac09a930f7cbd302255fa23c5d8107e66;p=oota-llvm.git 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 f4b2a9b817a..d89aad0ebde 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -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);