[PATCH] D46149: AMDGPU/GlobalISel: Don't try to lower hull shaders

Nicolai Hähnle via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 30 01:07:32 PDT 2018


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

One typo, LGTM apart from that.



================
Comment at: lib/Target/AMDGPU/AMDGPUCallLowering.cpp:91
                                               ArrayRef<unsigned> VRegs) const {
-  // AMDGPU_GS is not supported yet.
-  if (F.getCallingConv() == CallingConv::AMDGPU_GS)
+  // AMDGPU_GS and AMDGP_HS are not supported yet.
+  if (F.getCallingConv() == CallingConv::AMDGPU_GS ||
----------------
AMDGP*U*_HS


Repository:
  rL LLVM

https://reviews.llvm.org/D46149





More information about the llvm-commits mailing list