From: Jeff Cohen Date: Sat, 4 Feb 2006 03:27:39 +0000 (+0000) Subject: Fix VC++ warning. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=003cecbc9d210fa23f0ba68ac288748d20780cc7;p=oota-llvm.git Fix VC++ warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25957 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/VirtRegMap.cpp b/lib/CodeGen/VirtRegMap.cpp index 24457b4a63d..ce6fbedea61 100644 --- a/lib/CodeGen/VirtRegMap.cpp +++ b/lib/CodeGen/VirtRegMap.cpp @@ -279,7 +279,7 @@ public: ModifyStackSlot(Slot); PhysRegsAvailable.insert(std::make_pair(Reg, Slot)); - SpillSlotsAvailable[Slot] = (Reg << 1) | CanClobber; + SpillSlotsAvailable[Slot] = (Reg << 1) | (unsigned)CanClobber; DEBUG(std::cerr << "Remembering SS#" << Slot << " in physreg " << MRI->getName(Reg) << "\n");