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

Use unsigned long long instead of uin64_t for OS where that matters.

llvm-svn: 165147
This commit is contained in:
Nick Kledzik 2012-10-03 19:27:25 +00:00
parent 00b66b481d
commit df402d7821

View File

@ -470,7 +470,7 @@ static const char* BadStrings[] = {
TEST(StringRefTest, getAsUnsignedIntegerBadStrings) {
uint64_t U64;
unsigned long long U64;
for (size_t i = 0; i < array_lengthof(BadStrings); ++i) {
bool IsBadNumber = StringRef(BadStrings[i]).getAsInteger(0, U64);
ASSERT_TRUE(IsBadNumber);