[llvm] r231662 - R600/SI: Fix opcode for ds_read2_b64 and ds_read2st64_b64

Tom Stellard thomas.stellard at amd.com
Mon Mar 9 09:03:39 PDT 2015


Author: tstellar
Date: Mon Mar  9 11:03:39 2015
New Revision: 231662

URL: http://llvm.org/viewvc/llvm-project?rev=231662&view=rev
Log:
R600/SI: Fix opcode for ds_read2_b64 and ds_read2st64_b64

Modified:
    llvm/trunk/lib/Target/R600/SIInstructions.td

Modified: llvm/trunk/lib/Target/R600/SIInstructions.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/R600/SIInstructions.td?rev=231662&r1=231661&r2=231662&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/SIInstructions.td (original)
+++ llvm/trunk/lib/Target/R600/SIInstructions.td Mon Mar  9 11:03:39 2015
@@ -882,8 +882,8 @@ defm DS_WRITE2ST64_B64 : DS_Store2_Helpe
 
 defm DS_READ2_B32 : DS_Load2_Helper <0x00000037, "ds_read2_b32", VReg_64>;
 defm DS_READ2ST64_B32 : DS_Load2_Helper <0x00000038, "ds_read2st64_b32", VReg_64>;
-defm DS_READ2_B64 : DS_Load2_Helper <0x00000075, "ds_read2_b64", VReg_128>;
-defm DS_READ2ST64_B64 : DS_Load2_Helper <0x00000076, "ds_read2st64_b64", VReg_128>;
+defm DS_READ2_B64 : DS_Load2_Helper <0x00000077, "ds_read2_b64", VReg_128>;
+defm DS_READ2ST64_B64 : DS_Load2_Helper <0x00000078, "ds_read2st64_b64", VReg_128>;
 
 //===----------------------------------------------------------------------===//
 // MUBUF Instructions





More information about the llvm-commits mailing list