tests/tcg/s390x: Fix alignment of csst parameter list

The parameter list given in general register 1 shall be aligned
on a quadword boundary.  This test currently succeeds or fails
depending on the compiler version used and the accidential layout
of the function's stack frame.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: David Hildenbrand <david@redhat.com>
This commit is contained in:
Richard Henderson 2019-06-09 18:42:49 -07:00 committed by David Hildenbrand
parent 33d6099906
commit 62a31161ee
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
int main(void)
{
uint64_t parmlist[] = {
uint64_t parmlist[] __attribute__((aligned(16))) = {
0xfedcba9876543210ull,
0,
0x7777777777777777ull,