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

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Wed May 29 06:49:47 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)
----------------
arsenm wrote:

Yes, the 32-bit load/store here is of a float value. It is not trying to load a bfloat as a 32-bit operation. The bfloat simply does not exist 

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


More information about the llvm-commits mailing list