diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-08-18 10:57:36 -0700 |
|---|---|---|
| committer | Warner Losh <imp@bsdimp.com> | 2023-08-28 12:16:18 -0600 |
| commit | 4436e2ff6cae585f4863fa59a3ad77dd3c54ac63 (patch) | |
| tree | ab9a03fc1b6dead4705a27e23670ae60650bd7ae /bsd-user/main.c | |
| parent | 7db1873664dcba22820981ad105b0d30bcd509b8 (diff) | |
| download | focaccia-qemu-4436e2ff6cae585f4863fa59a3ad77dd3c54ac63.tar.gz focaccia-qemu-4436e2ff6cae585f4863fa59a3ad77dd3c54ac63.zip | |
bsd-user: Remove image_info.start_brk
This has the same value is image_info.brk, which is also logged, and is otherwise unused. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20230818175736.144194-4-richard.henderson@linaro.org> Reviewed-by: Warner Losh <imp@bsdimp.com> Signed-off-by: Warner Losh <imp@bsdimp.com>
Diffstat (limited to 'bsd-user/main.c')
| -rw-r--r-- | bsd-user/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bsd-user/main.c b/bsd-user/main.c index 381bb18df8..f913cb55a7 100644 --- a/bsd-user/main.c +++ b/bsd-user/main.c @@ -553,8 +553,6 @@ int main(int argc, char **argv) fprintf(f, "page layout changed following binary load\n"); page_dump(f); - fprintf(f, "start_brk 0x" TARGET_ABI_FMT_lx "\n", - info->start_brk); fprintf(f, "end_code 0x" TARGET_ABI_FMT_lx "\n", info->end_code); fprintf(f, "start_code 0x" TARGET_ABI_FMT_lx "\n", |