[PATCH] D138670: [AArch64][SME]: Generate streaming-compatible code for int/fp compares.

Sander de Smalen via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 24 07:10:47 PST 2022


sdesmalen added inline comments.


================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:1664
+    setCondCodeAction(ISD::SETOLT, VT, Expand);
+    setCondCodeAction(ISD::SETLT, VT, Expand);
+    setCondCodeAction(ISD::SETOLE, VT, Expand);
----------------
SETLT and SETLE can be removed from the list (I mentioned that on https://reviews.llvm.org/D136858#inline-1332721 as well)


================
Comment at: llvm/test/CodeGen/AArch64/sve-streaming-mode-fixed-length-fp-compares.ll:10
 
 define <2 x i16> @fcmp_oeq_v2f16(<2 x half> %op1, <2 x half> %op2) #0 {
   %cmp = fcmp oeq <2 x half> %op1, %op2
----------------
Why does this file not have CHECK lines for each test?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D138670/new/

https://reviews.llvm.org/D138670



More information about the llvm-commits mailing list