]> granicus.if.org Git - llvm/commitdiff
AMDGPU/GlobalISel: Don't reject shader types
authorMatt Arsenault <Matthew.Arsenault@amd.com>
Mon, 5 Aug 2019 14:40:23 +0000 (14:40 +0000)
committerMatt Arsenault <Matthew.Arsenault@amd.com>
Mon, 5 Aug 2019 14:40:23 +0000 (14:40 +0000)
I'm not sure what complications these present, but the current
argument lowering is pretty much directly copied from the DAG
lowering, so I assume these work as they should.

No tests because I'm lazy and things are getting pretty close to the
point where the existing calling-conventions.ll can be shared with
SelectionDAG.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@367870 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/AMDGPU/AMDGPUCallLowering.cpp

index c860d7975d8ea34aab00b69e9e5a72e566881d64..905443fffd7dab4e498459f2e442c26cb86efa06 100644 (file)
@@ -555,10 +555,6 @@ bool AMDGPUCallLowering::lowerFormalArguments(
   if (CC == CallingConv::AMDGPU_KERNEL)
     return lowerFormalArgumentsKernel(MIRBuilder, F, VRegs);
 
-  // AMDGPU_GS and AMDGP_HS are not supported yet.
-  if (CC == CallingConv::AMDGPU_GS || CC == CallingConv::AMDGPU_HS)
-    return false;
-
   const bool IsShader = AMDGPU::isShader(CC);
   const bool IsEntryFunc = AMDGPU::isEntryFunctionCC(CC);