diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp b/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp index 27bd191b93e..dde8fdccb73 100644 --- a/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp +++ b/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp @@ -528,8 +528,11 @@ bool AMDGPUInstructionSelector::selectG_LOAD(MachineInstr &I) const { bool AMDGPUInstructionSelector::select(MachineInstr &I, CodeGenCoverage &CoverageInfo) const { - if (!isPreISelGenericOpcode(I.getOpcode())) + if (!isPreISelGenericOpcode(I.getOpcode())) { + if (I.isCopy()) + return selectCOPY(I); return true; + } switch (I.getOpcode()) { default: |