Fix VC++ warning.

llvm-svn: 25957
This commit is contained in:
Jeff Cohen 2006-02-04 03:27:39 +00:00
parent 0e7aee2382
commit 57a004abfe
1 changed files with 1 additions and 1 deletions

View File

@ -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");