From: Alex Bennée Date: Thu, 1 Apr 2021 10:25:24 +0000 (+0100) Subject: tests/tcg/i386: expand .data sections for system tests X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4011a686ccf32239d6b887e750c0ee2f6b5bea9e;p=qemu.git tests/tcg/i386: expand .data sections for system tests Newer compilers might end up putting some data in .data.rel.local which was getting skipped resulting in hilarious confusion on some tests. Fix that. Signed-off-by: Alex Bennée Reviewed-by: Richard Henderson Reviewed-by: Thomas Huth Message-Id: <20210401102530.12030-6-alex.bennee@linaro.org> --- diff --git a/tests/tcg/i386/system/kernel.ld b/tests/tcg/i386/system/kernel.ld index 92de525e93..27ea5bbe04 100644 --- a/tests/tcg/i386/system/kernel.ld +++ b/tests/tcg/i386/system/kernel.ld @@ -12,7 +12,7 @@ SECTIONS { } .data : { - *(.data) + *(.data*) __load_en = .; }