From: Matt Arsenault Date: Wed, 18 Feb 2015 02:15:37 +0000 (+0000) Subject: R600/SI: Rename dst encoding field to be consistent with docs X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=333507b7af11c69a8ca8dfefdc9a1cbd71c31353;p=oota-llvm.git R600/SI: Rename dst encoding field to be consistent with docs The docs call this vdst instead of just dst. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229614 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/R600/SIInstrFormats.td b/lib/Target/R600/SIInstrFormats.td index 4481156820e..1d561a32349 100644 --- a/lib/Target/R600/SIInstrFormats.td +++ b/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/lib/Target/R600/VIInstrFormats.td b/lib/Target/R600/VIInstrFormats.td index 5ecd2f49ba5..d8738f99263 100644 --- a/lib/Target/R600/VIInstrFormats.td +++ b/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};