1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

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();
}