[PATCH] D29658: [OpenMP] Customize CUDA-based tool chain selection

Jonas Hahnfeld via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Mar 31 02:48:17 PDT 2017


Hahnfeld requested changes to this revision.
Hahnfeld added inline comments.
This revision now requires changes to proceed.


================
Comment at: lib/Frontend/CompilerInvocation.cpp:2181-2190
+      if (!(TT.getArch() == llvm::Triple::ppc ||
+            TT.getArch() == llvm::Triple::ppc64 ||
+            TT.getArch() == llvm::Triple::ppc64le ||
+            TT.getArch() == llvm::Triple::nvptx ||
+            TT.getArch() == llvm::Triple::nvptx64 ||
+            TT.getArch() == llvm::Triple::x86 ||
+            TT.getArch() == llvm::Triple::x86_64))
----------------
This is unrelated to CUDA, please split that into its own patch.


Repository:
  rL LLVM

https://reviews.llvm.org/D29658





More information about the cfe-commits mailing list