[llvm] r296523 - AMDGPU: Fix types for VOP_I16_I16_I16
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 28 13:31:45 PST 2017
Author: arsenm
Date: Tue Feb 28 15:31:45 2017
New Revision: 296523
URL: http://llvm.org/viewvc/llvm-project?rev=296523&view=rev
Log:
AMDGPU: Fix types for VOP_I16_I16_I16
Modified:
llvm/trunk/lib/Target/AMDGPU/SIInstrInfo.td
Modified: llvm/trunk/lib/Target/AMDGPU/SIInstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AMDGPU/SIInstrInfo.td?rev=296523&r1=296522&r2=296523&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AMDGPU/SIInstrInfo.td (original)
+++ llvm/trunk/lib/Target/AMDGPU/SIInstrInfo.td Tue Feb 28 15:31:45 2017
@@ -1319,7 +1319,7 @@ def VOP_I16_F16 : VOPProfile <[i16, f16,
def VOP_F16_F16_F16 : VOPProfile <[f16, f16, f16, untyped]>;
def VOP_F16_F16_I16 : VOPProfile <[f16, f16, i16, untyped]>;
def VOP_F16_F16_I32 : VOPProfile <[f16, f16, i32, untyped]>;
-def VOP_I16_I16_I16 : VOPProfile <[i32, i32, i32, untyped]>;
+def VOP_I16_I16_I16 : VOPProfile <[i16, i16, i16, untyped]>;
def VOP_I16_I16_I16_I16 : VOPProfile <[i16, i16, i16, i16, untyped]>;
def VOP_F16_F16_F16_F16 : VOPProfile <[f16, f16, f16, f16, untyped]>;
More information about the llvm-commits
mailing list