From d0c85e36e4de67af628d54e9ab577cc3fad7796a Mon Sep 17 00:00:00 2001 From: Christian Krinitsin Date: Thu, 3 Jul 2025 07:27:52 +0000 Subject: add deepseek and gemma results --- results/classifier/gemma3:12b/kernel/2078 | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 results/classifier/gemma3:12b/kernel/2078 (limited to 'results/classifier/gemma3:12b/kernel/2078') diff --git a/results/classifier/gemma3:12b/kernel/2078 b/results/classifier/gemma3:12b/kernel/2078 new file mode 100644 index 00000000..5734ade0 --- /dev/null +++ b/results/classifier/gemma3:12b/kernel/2078 @@ -0,0 +1,35 @@ + +Qemu crashes with SIGFPE on certain trapping arithmetic operations on m68k target +Description of problem: +I recently ported NetBSD to the Qemu m68k "virt" platform, and this was discovered when running NetBSD's automated tests. Certain arithmetic operation that will trap in the guest will crash Qemu. First case encountered is below. +Steps to reproduce: +1. Compile and run the following program in the m68k guest: + +``` +virt68k:thorpej 3$ cat crash-qemu.c +#include +#include + +int divisor = -1; + +int +main(int argc, char *argv[]) +{ + + if (argc > 1) + divisor = atoi(argv[1]); + + return INT_MIN / divisor; +} +virt68k:thorpej 4$ +``` + +Another minimal case would be: + +``` +move.l #-2147483648,%d0 +move.l #-1,%d1 +divsl.l %d1,%d1:%d0 +``` +Additional information: + -- cgit v1.2.3