Skip to content
Snippets Groups Projects
Commit 2ce5e496 authored by Xavier Leroy's avatar Xavier Leroy Committed by Xavier Leroy
Browse files

x86: wrong expansion of __builtin_fmadd et al

There was a misunderstanding on the asm syntax for 3-operand instructions
such as vfmadd132: when the Intel manual reads
     vfmadd132 res, arg2, arg3
the corresponding GNU asm syntax is
     vfmadd132 arg3, arg2, res
but not
     vfmadd132 arg2, arg3, res

Closes: #188
parent ec59c3de
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment