[llvm] X86: Fix asserting on bfloat argument/return without sse2 (PR #93146)

Phoebe Wang via llvm-commits llvm-commits at lists.llvm.org
Thu May 23 01:34:26 PDT 2024


================
@@ -0,0 +1,1441 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
+; RUN: llc -mtriple=i386-linux-gnu < %s | FileCheck -check-prefixes=CHECK,NOSSE %s
+; RUN: llc -mtriple=i386-linux-gnu -mattr=+sse < %s | FileCheck -check-prefixes=CHECK,SSE %s
+
+; Make sure no assert without SSE2 and bfloat. Issue 92899
+
+define bfloat @return_arg_bf16(bfloat %x) {
+; CHECK-LABEL: return_arg_bf16:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    flds {{[0-9]+}}(%esp)
----------------
phoebewang wrote:

That's how it works in most target but doesn't work for X86, because when on 32-bit system or 64-bit without SSE, X87 register is used for `float` type. But X87 instruction cannot handle `half` type.

https://github.com/llvm/llvm-project/pull/93146


More information about the llvm-commits mailing list