mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
Squash warnings on Solaris/sparc... the test suite is not working for me so I
can't be sure if these are OK, but they look OK. llvm-svn: 13459
This commit is contained in:
parent
2c5d55fd94
commit
f1f52ea4cc
@ -33,7 +33,7 @@ _stacker_dump_stack_()
|
||||
printf("Stack Dump:\n");
|
||||
for (i = _index_; i > 0; i-- )
|
||||
{
|
||||
printf("#%03lld: %lld\n", i, _stack_[i] );
|
||||
printf("#%03lld: %lld\n", (long long int) i, (long long int) _stack_[i] );
|
||||
}
|
||||
}
|
||||
|
||||
@ -56,7 +56,7 @@ main ( int argc, char** argv )
|
||||
}
|
||||
else
|
||||
{
|
||||
_stack_[_index_++] = (int) argv[a];
|
||||
_stack_[_index_++] = (int64_t) (intptr_t) argv[a];
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user