[PATCH] D110858: [PowerPC] Implement vector float and vector double version for vec_orc builtin

Nemanja Ivanovic via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 30 18:00:39 PDT 2021


nemanjai accepted this revision.
nemanjai added a comment.
This revision is now accepted and ready to land.

LGTM. Please run clang-format on the patch (only the modified lines).



================
Comment at: clang/lib/Headers/altivec.h:7164
+vec_orc(vector double __a, vector double __b) {
+  return (vector double)((vector bool long long)__a | ~(vector unsigned long long)__b);
+}
----------------
nit: line too long?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D110858



More information about the llvm-commits mailing list