[llvm] [Scalarizer][DirectX] support structs return types (PR #111569)

Farzon Lotfi via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 15 10:28:14 PDT 2024


================
@@ -667,14 +685,25 @@ bool ScalarizerVisitor::splitBinary(Instruction &I, const Splitter &Split) {
 bool ScalarizerVisitor::isTriviallyScalarizable(Intrinsic::ID ID) {
   if (isTriviallyVectorizable(ID))
     return true;
+  // TODO: investigate vectorizable frexp
+  switch (ID) {
+  case Intrinsic::frexp:
----------------
farzonl wrote:

I'll add https://github.com/llvm/llvm-project/issues/112408 to the TODO on line 688.

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


More information about the llvm-commits mailing list