diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-07-03 07:27:52 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-07-03 07:27:52 +0000 |
| commit | d0c85e36e4de67af628d54e9ab577cc3fad7796a (patch) | |
| tree | f8f784b0f04343b90516a338d6df81df3a85dfa2 /results/classifier/deepseek-2/reasoning/assembly/1934 | |
| parent | 7f4364274750eb8cb39a3e7493132fca1c01232e (diff) | |
| download | emulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz emulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip | |
add deepseek and gemma results
Diffstat (limited to 'results/classifier/deepseek-2/reasoning/assembly/1934')
| -rw-r--r-- | results/classifier/deepseek-2/reasoning/assembly/1934 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/results/classifier/deepseek-2/reasoning/assembly/1934 b/results/classifier/deepseek-2/reasoning/assembly/1934 new file mode 100644 index 00000000..f10be37e --- /dev/null +++ b/results/classifier/deepseek-2/reasoning/assembly/1934 @@ -0,0 +1,13 @@ +<think> +Okay, I need to classify this bug report into one of the given categories. Let's read through it carefully. + +The issue is a build failure on s390x when using Clang 17. The problem arises because `__int128` needs to be 8-byte aligned, but the code in `atomic128-ldst.h` uses 16-byte alignment unconditionally. This causes errors during compilation related to `__sync` built-in operations not having natural alignment. + +Looking at the categories provided: mistranslation, assembly, other, device, graphic, socket, network, KVM, boot, vnc, debug, files, permissions, performance, kernel, peripherals, hypervisor. + +This bug is about incorrect alignment in the code, leading to a build failure. It's related to how `__int128` is handled and aligned during compilation, which affects the generated machine code. The error messages mention using `__sync` built-ins incorrectly, suggesting it's an issue with how atomic operations are being performed at the assembly level. + +The problem isn't about user-mode translations or direct device/peripheral interactions. It seems more related to the assembly generation and alignment in the compiler. So it's likely under the 'assembly' category. +</think> + +assembly
\ No newline at end of file |
