Fix a signed comparison warning.

llvm-svn: 95766
This commit is contained in:
Daniel Dunbar 2010-02-10 04:46:51 +00:00
parent 351f9edacb
commit 8373cc8cec
1 changed files with 3 additions and 3 deletions

View File

@ -77,9 +77,9 @@ public:
FI.OpIndex = OpIndex;
FI.Kind = unsigned(Kind);
assert(Offset == FI.Offset && "Offset out of range!");
assert(OpIndex == FI.OpIndex && "Operand index out of range!");
assert(Kind == FI.Kind && "Kind out of range!");
assert(Offset == FI.getOffset() && "Offset out of range!");
assert(OpIndex == FI.getOpIndex() && "Operand index out of range!");
assert(Kind == FI.getKind() && "Kind out of range!");
return FI;
}