From 0ba644b66b34f453b70f021391702827f5036afe Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Wed, 18 Feb 2015 02:15:37 +0000 Subject: [PATCH] R600/SI: Rename dst encoding field to be consistent with docs The docs call this vdst instead of just dst. llvm-svn: 229614 --- llvm/lib/Target/R600/SIInstrFormats.td | 4 ++-- llvm/lib/Target/R600/VIInstrFormats.td | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/llvm/lib/Target/R600/SIInstrFormats.td b/llvm/lib/Target/R600/SIInstrFormats.td index 4481156820e2..1d561a32349b 100644 --- a/llvm/lib/Target/R600/SIInstrFormats.td +++ b/llvm/lib/Target/R600/SIInstrFormats.td @@ -300,7 +300,7 @@ class VOP2e op> : Enc32 { } class VOP3e op> : Enc64 { - bits<8> dst; + bits<8> vdst; bits<2> src0_modifiers; bits<9> src0; bits<2> src1_modifiers; @@ -310,7 +310,7 @@ class VOP3e op> : Enc64 { bits<1> clamp; bits<2> omod; - let Inst{7-0} = dst; + let Inst{7-0} = vdst; let Inst{8} = src0_modifiers{1}; let Inst{9} = src1_modifiers{1}; let Inst{10} = src2_modifiers{1}; diff --git a/llvm/lib/Target/R600/VIInstrFormats.td b/llvm/lib/Target/R600/VIInstrFormats.td index 5ecd2f49ba53..d8738f992630 100644 --- a/llvm/lib/Target/R600/VIInstrFormats.td +++ b/llvm/lib/Target/R600/VIInstrFormats.td @@ -105,7 +105,7 @@ class SMEMe_vi op, bit imm> : Enc64 { } class VOP3e_vi op> : Enc64 { - bits<8> dst; + bits<8> vdst; bits<2> src0_modifiers; bits<9> src0; bits<2> src1_modifiers; @@ -115,7 +115,7 @@ class VOP3e_vi op> : Enc64 { bits<1> clamp; bits<2> omod; - let Inst{7-0} = dst; + let Inst{7-0} = vdst; let Inst{8} = src0_modifiers{1}; let Inst{9} = src1_modifiers{1}; let Inst{10} = src2_modifiers{1};