[libc-commits] [PATCH] D72516: [llvm-libc] Add memory function benchmarks

Siva Chandra via Phabricator via libc-commits libc-commits at lists.llvm.org
Thu Jan 23 09:05:53 PST 2020


sivachandra added inline comments.


================
Comment at: libc/cmake/modules/LLVMLibCRules.cmake:320
   foreach(dep IN LISTS LIBC_UNITTEST_DEPENDS)
-    get_target_property(dep_type ${dep} "TARGET_TYPE")
-    if (dep_type)
-      string(COMPARE EQUAL ${dep_type} ${ENTRYPOINT_OBJ_TARGET_TYPE} dep_is_entrypoint)
+    get_property(dep_target_type TARGET ${dep} PROPERTY "TARGET_TYPE")
+    if (dep_target_type)
----------------
sivachandra wrote:
> Do we still need the changes in this file?
Pointing out again: The changes in this file are OK, but if they are not required for the rest of the change, they should probably be done separately.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D72516





More information about the libc-commits mailing list