| ... | ... | @@ -5772,8 +5772,10 @@ bool zig_llvm_fn_key_eql(ZigLLVMFnKey a, ZigLLVMFnKey b) { |
| 5772 | 5772 | case ZigLLVMFnIdFloor: |
| 5773 | 5773 | case ZigLLVMFnIdCeil: |
| 5774 | 5774 | case ZigLLVMFnIdSqrt: |
| 5775 | | case ZigLLVMFnIdFMA: |
| 5776 | 5775 | return a.data.floating.bit_count == b.data.floating.bit_count; |
| 5776 | case ZigLLVMFnIdFMA: |
| 5777 | return a.data.floating.bit_count == b.data.floating.bit_count && |
| 5778 | a.data.floating.vector_len == b.data.floating.vector_len; |
| 5777 | 5779 | case ZigLLVMFnIdOverflowArithmetic: |
| 5778 | 5780 | return (a.data.overflow_arithmetic.bit_count == b.data.overflow_arithmetic.bit_count) && |
| 5779 | 5781 | (a.data.overflow_arithmetic.add_sub_mul == b.data.overflow_arithmetic.add_sub_mul) && |