[PATCH] D123635: [llvm/utils] Enable fpcmp.

Taewook Oh via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 12 14:39:42 PDT 2022


taewookoh created this revision.
Herald added a subscriber: mgorny.
Herald added a project: All.
taewookoh requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D123635

Files:
  llvm/CMakeLists.txt
  llvm/utils/fpcmp/CMakeLists.txt


Index: llvm/utils/fpcmp/CMakeLists.txt
===================================================================
--- /dev/null
+++ llvm/utils/fpcmp/CMakeLists.txt
@@ -0,0 +1,5 @@
+add_llvm_utility(fpcmp
+  fpcmp.cpp
+  )
+
+target_link_libraries(fpcmp PRIVATE LLVMSupport)
Index: llvm/CMakeLists.txt
===================================================================
--- llvm/CMakeLists.txt
+++ llvm/CMakeLists.txt
@@ -1071,6 +1071,7 @@
   add_subdirectory(utils/FileCheck)
   add_subdirectory(utils/PerfectShuffle)
   add_subdirectory(utils/count)
+  add_subdirectory(utils/fpcmp)
   add_subdirectory(utils/not)
   add_subdirectory(utils/yaml-bench)
 else()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D123635.422336.patch
Type: text/x-patch
Size: 654 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220412/3aab2f48/attachment.bin>


More information about the llvm-commits mailing list