X86: Get rid of some debug warnings.
Get rid of some warnings that were accidentally committed. --HG-- extra : convert_revision : e800dbce253f6ba759932ca47d64bf98129e4177
This commit is contained in:
parent
fa9e4d110a
commit
f4b89cd897
1 changed files with 0 additions and 3 deletions
|
@ -333,11 +333,8 @@ X86LiveProcess::argsInit(int intSize, int pageSize)
|
||||||
//There needs to be padding after the auxiliary vector data so that the
|
//There needs to be padding after the auxiliary vector data so that the
|
||||||
//very bottom of the stack is aligned properly.
|
//very bottom of the stack is aligned properly.
|
||||||
int partial_size = frame_size + aux_data_size;
|
int partial_size = frame_size + aux_data_size;
|
||||||
warn("The partial size is %d.\n", partial_size);
|
|
||||||
int aligned_partial_size = roundUp(partial_size, align);
|
int aligned_partial_size = roundUp(partial_size, align);
|
||||||
warn("The aligned partial size is %d.\n", aligned_partial_size);
|
|
||||||
int aux_padding = aligned_partial_size - partial_size;
|
int aux_padding = aligned_partial_size - partial_size;
|
||||||
warn("The padding is %d.\n", aux_padding);
|
|
||||||
|
|
||||||
int space_needed =
|
int space_needed =
|
||||||
info_block_size +
|
info_block_size +
|
||||||
|
|
Loading…
Reference in a new issue