diff options
author | Bruno Haible <bruno@clisp.org> | 2022-03-23 17:26:20 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-04-01 13:06:07 +0200 |
commit | 5a2e67a691501bc4dd81c46c81b8f1881c8bd5df (patch) | |
tree | 93485379e988d86fac67613948f3cc94a05488bd /hw/ppc | |
parent | e7c2d7436e85ae6d1d72b7479c1137faa86f4f58 (diff) | |
download | qemu-5a2e67a691501bc4dd81c46c81b8f1881c8bd5df.zip qemu-5a2e67a691501bc4dd81c46c81b8f1881c8bd5df.tar.gz qemu-5a2e67a691501bc4dd81c46c81b8f1881c8bd5df.tar.bz2 |
target/s390x: Fix determination of overflow condition code after addition
This program currently prints different results when run with TCG instead
of running on real s390x hardware:
#include <stdio.h>
int overflow_32 (int x, int y)
{
int sum;
return ! __builtin_add_overflow (x, y, &sum);
}
int overflow_64 (long long x, long long y)
{
long sum;
return ! __builtin_add_overflow (x, y, &sum);
}
int a1 = -2147483648;
int b1 = -2147483648;
long long a2 = -9223372036854775808L;
long long b2 = -9223372036854775808L;
int main ()
{
{
int a = a1;
int b = b1;
printf ("a = 0x%x, b = 0x%x\n", a, b);
printf ("no_overflow = %d\n", overflow_32 (a, b));
}
{
long long a = a2;
long long b = b2;
printf ("a = 0x%llx, b = 0x%llx\n", a, b);
printf ("no_overflow = %d\n", overflow_64 (a, b));
}
}
Signed-off-by: Bruno Haible <bruno@clisp.org>
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/616
Message-Id: <20220323162621.139313-2-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'hw/ppc')
0 files changed, 0 insertions, 0 deletions