Skip to content

Commit

Permalink
[AMDGPU] Stop hardcoding v_mov_b32 in VOPD. NFCI.
Browse files Browse the repository at this point in the history
There is no single possible reason to to it.

Differential Revision: https://reviews.llvm.org/D152616
  • Loading branch information
rampitec committed Jun 10, 2023
1 parent e3ad708 commit 3128632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/Target/AMDGPU/VOP1Instructions.td
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ multiclass VOP1Inst <string opName, VOPProfile P,
def _e32 : VOP1_Pseudo <opName, P>;
else
// Only for V_MOV_B32
def _e32 : VOP1_Pseudo <opName, P>, VOPD_Component<VOPDOp, "v_mov_b32">;
def _e32 : VOP1_Pseudo <opName, P>, VOPD_Component<VOPDOp, opName>;
def _e64 : VOP3InstBase <opName, P, node>;
}

Expand Down

0 comments on commit 3128632

Please sign in to comment.