diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2021-04-01 11:25:24 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2021-04-06 15:04:42 +0100 |
commit | 4011a686ccf32239d6b887e750c0ee2f6b5bea9e (patch) | |
tree | 2d8f6bcbde834ab505a31db860fe9fe70d358f72 /tests/tcg/i386 | |
parent | 08341b4fa6a9f6379b2e613cca8533fafc81861f (diff) |
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 <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210401102530.12030-6-alex.bennee@linaro.org>
Diffstat (limited to 'tests/tcg/i386')
-rw-r--r-- | tests/tcg/i386/system/kernel.ld | 2 |
1 files changed, 1 insertions, 1 deletions
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 = .; } |