[PATCH] D148068: [AArch64] Lower fused complex multiply-add intrinsic to AArch64::FCMA

Hugo Trachino via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 11 23:57:36 PDT 2023


nujaa added a comment.

git-clang-format is unhappy because of llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp formatting generates something like :

  case ISD::FMA:                        return "fma";
  case ISD::FCMA:
    return "fcma";
  case ISD::STRICT_FMA:            return "strict_fma";
  case ISD::FMAD:                      return "fmad";

Which does not follow the current formatting of the file. What do you suggest ?


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

https://reviews.llvm.org/D148068



More information about the llvm-commits mailing list