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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175600 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Cameron Zwarich 2013-02-20 06:46:39 +00:00
parent fd0f93fa1d
commit 5954fc6050

View File

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