summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-08-02 16:28:01 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-08-02 16:28:01 -0700
commitf4b89cd897e15b34f1565f55d7c6ce0c056f361a (patch)
tree52cb5f666449dde26728febfda5feb412e5514a6 /src
parentfa9e4d110aba05fb860e299d1765249589e9b810 (diff)
downloadgem5-f4b89cd897e15b34f1565f55d7c6ce0c056f361a.tar.xz
X86: Get rid of some debug warnings.
Get rid of some warnings that were accidentally committed. --HG-- extra : convert_revision : e800dbce253f6ba759932ca47d64bf98129e4177
Diffstat (limited to 'src')
-rw-r--r--src/arch/x86/process.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/arch/x86/process.cc b/src/arch/x86/process.cc
index ce5828a1d..3cb027d41 100644
--- a/src/arch/x86/process.cc
+++ b/src/arch/x86/process.cc
@@ -333,11 +333,8 @@ X86LiveProcess::argsInit(int intSize, int pageSize)
//There needs to be padding after the auxiliary vector data so that the
//very bottom of the stack is aligned properly.
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);
- warn("The aligned partial size is %d.\n", aligned_partial_size);
int aux_padding = aligned_partial_size - partial_size;
- warn("The padding is %d.\n", aux_padding);
int space_needed =
info_block_size +