[PATCH] D80979: [clang] Implement VectorType logic not operator.

JunMa via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Jun 3 23:02:11 PDT 2020


junparser marked 2 inline comments as done.
junparser added inline comments.


================
Comment at: clang/test/CodeGen/vector-1.cpp:183
+// CHECK: @_Z5test7Dv4_j
+int4 test7(uint4 V0) {
+  // CHECK: [[CMP0:%.*]] = icmp eq <4 x i32> [[V0:%.*]], zeroinitializer
----------------
logic operation with vector int


================
Comment at: clang/test/CodeGen/vector-1.cpp:201
+// CHECK: @_Z5test8Dv4_fS_
+int4 test8(float4 V0, float4 V1) {
+  // CHECK: [[CMP0:%.*]] = fcmp oeq <4 x float> [[V0:%.*]], zeroinitializer
----------------
logic operation with vector float


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

https://reviews.llvm.org/D80979





More information about the cfe-commits mailing list