Make SlotIndex::getEntry() return unsigned to match IndexListEntry.

llvm-svn: 175600
This commit is contained in:
Cameron Zwarich 2013-02-20 06:46:39 +00:00
parent 277fc532b7
commit fedf4a2442

View File

@ -112,7 +112,7 @@ namespace llvm {
return lie.getPointer();
}
int getIndex() const {
unsigned getIndex() const {
return listEntry()->getIndex() | getSlot();
}