[PATCH] D101234: GlobalISel: Use DAG call lowering infrastructure in a more compatible way

Amara Emerson via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 13 18:11:44 PDT 2021


aemerson added a comment.

This seems to have broken the following code for AArch64, could you take a look?

  target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
  target triple = "arm64e-apple-ios14.0.0"
  
  declare <3 x float> @bar(float)
  
  define void @foo(float %a, float %b) {
  entry:
    %call = call <3 x float> @bar(float undef)
    ret void
  }


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

https://reviews.llvm.org/D101234



More information about the llvm-commits mailing list