diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-05-30 16:52:07 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-05-30 16:52:17 +0200 |
| commit | 9260319e7411ff8281700a532caa436f40120ec4 (patch) | |
| tree | 2f6bfe5f3458dd49d328d3a9eb508595450adec0 /gitlab/issues/target_hppa/host_missing/accel_missing/625.toml | |
| parent | 225caa38269323af1bfc2daadff5ec8bd930747f (diff) | |
| download | qemu-analysis-9260319e7411ff8281700a532caa436f40120ec4.tar.gz qemu-analysis-9260319e7411ff8281700a532caa436f40120ec4.zip | |
gitlab scraper: download in toml and text format
Diffstat (limited to 'gitlab/issues/target_hppa/host_missing/accel_missing/625.toml')
| -rw-r--r-- | gitlab/issues/target_hppa/host_missing/accel_missing/625.toml | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/gitlab/issues/target_hppa/host_missing/accel_missing/625.toml b/gitlab/issues/target_hppa/host_missing/accel_missing/625.toml deleted file mode 100644 index b1f086bbd..000000000 --- a/gitlab/issues/target_hppa/host_missing/accel_missing/625.toml +++ /dev/null @@ -1,31 +0,0 @@ -id = 625 -title = "qemu-hppa floating point POWER function is incorrect" -state = "opened" -created_at = "2021-09-17T08:04:01.442Z" -closed_at = "n/a" -labels = ["target: hppa"] -url = "https://gitlab.com/qemu-project/qemu/-/issues/625" -host-os = "Gentoo Linux" -host-arch = "AMD64" -qemu-version = "6.0.0, also with git 6.1.50 version" -guest-os = "n/a" -guest-arch = "n/a" -description = """The floating point power function produces incorrect values, and possibly stack misshapes as well.""" -reproduce = """1. $ hppa1.1-unknown-linux-gnu-gcc pow.c -o pow -lm -static -2. $ qemu-hppa pow -3. the expected result is 10.0 ^ 6.0 = 6000000.0, instead of 403.45""" -additional = """Example C source to reproduce, pow.c: -``` -#include <stdio.h> -#include <math.h> -int main() -{ - double base, expo, res; - base=10.0; - expo=6.0; - // res sould be 1e+6 - res = pow(base, expo); - printf("%.1lf^%.1lf = %.2lf\\n", base, expo, res); - return 0; -} -```""" |