Fixed usubBorrw
This commit is contained in:
@@ -197,14 +197,14 @@ namespace findLSB
|
||||
genType Value;
|
||||
genType Return;
|
||||
};
|
||||
|
||||
|
||||
type<int> const DataI32[] =
|
||||
{
|
||||
{0x00000001, 0},
|
||||
{0x00000003, 0},
|
||||
{0x00000002, 1}
|
||||
{0x00000003, 0},
|
||||
{0x00000002, 1}
|
||||
};
|
||||
|
||||
|
||||
int test()
|
||||
{
|
||||
int Error(0);
|
||||
@@ -215,11 +215,27 @@ namespace findLSB
|
||||
Error += DataI32[i].Return == Result ? 0 : 1;
|
||||
assert(!Error);
|
||||
}
|
||||
|
||||
|
||||
return Error;
|
||||
}
|
||||
}//findLSB
|
||||
|
||||
namespace usubBorrow
|
||||
{
|
||||
int test()
|
||||
{
|
||||
int Error(0);
|
||||
|
||||
glm::uint x = 16;
|
||||
glm::uint y = 17;
|
||||
glm::uint Borrow = 0;
|
||||
glm::uint Result = glm::usubBorrow(x, y, Borrow);
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
}//namespace usubBorrow
|
||||
|
||||
int main()
|
||||
{
|
||||
int Error = 0;
|
||||
|
||||
Reference in New Issue
Block a user