AMDGPU/GlobalISel: Remove vectors from legal constant types

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351859 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Matt Arsenault 2019-01-22 19:04:51 +00:00
parent 02ecc9210c
commit 63e24f6ebd

View File

@ -130,7 +130,7 @@ AMDGPULegalizerInfo::AMDGPULegalizerInfo(const GCNSubtarget &ST,
// between these two scenarios.
// FIXME: Pointer types
getActionDefinitionsBuilder(G_CONSTANT)
.legalFor({S1, S32, S64, V2S32, V2S16})
.legalFor({S1, S32, S64})
.clampScalar(0, S32, S64)
.widenScalarToNextPow2(0);