diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-08-11 10:58:36 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2022-09-06 08:04:25 +0100 |
commit | d64655c2c35d967e9c496937885c511240204e76 (patch) | |
tree | c9566f307b1ce7a73cb091da669a76c706b2b241 | |
parent | aa98e2d885ca9de66ddd56d88b19b0e162cc90d7 (diff) | |
download | qemu-d64655c2c35d967e9c496937885c511240204e76.zip qemu-d64655c2c35d967e9c496937885c511240204e76.tar.gz qemu-d64655c2c35d967e9c496937885c511240204e76.tar.bz2 |
tests/tcg/i386: Move smc_code2 to an executable section
We're about to start validating PAGE_EXEC, which means
that we've got to put this code into a section that is
both writable and executable.
Note that this test did not run on hardware beforehand either.
Acked-by: Ilya Leoshkevich <iii@linux.ibm.com>
Tested-by: Ilya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | tests/tcg/i386/test-i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tcg/i386/test-i386.c b/tests/tcg/i386/test-i386.c index ac8d5a3..e6b308a 100644 --- a/tests/tcg/i386/test-i386.c +++ b/tests/tcg/i386/test-i386.c @@ -1998,7 +1998,7 @@ uint8_t code[] = { 0xc3, /* ret */ }; -asm(".section \".data\"\n" +asm(".section \".data_x\",\"awx\"\n" "smc_code2:\n" "movl 4(%esp), %eax\n" "movl %eax, smc_patch_addr2 + 1\n" |