[WebAssembly] Fix the opcode value for i64.rotr.
authorDan Gohman <dan433584@gmail.com>
Wed, 21 Dec 2016 23:09:42 +0000 (23:09 +0000)
committerDan Gohman <dan433584@gmail.com>
Wed, 21 Dec 2016 23:09:42 +0000 (23:09 +0000)
llvm-svn: 290281

llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td

index 7cdeb39..8a3248e 100644 (file)
@@ -37,7 +37,7 @@ defm SHL : BinaryInt<shl, "shl ", 0x74, 0x86>;
 defm SHR_S : BinaryInt<sra, "shr_s", 0x75, 0x87>;
 defm SHR_U : BinaryInt<srl, "shr_u", 0x76, 0x88>;
 defm ROTL : BinaryInt<rotl, "rotl", 0x77, 0x89>;
-defm ROTR : BinaryInt<rotr, "rotr", 0x78, 0x90>;
+defm ROTR : BinaryInt<rotr, "rotr", 0x78, 0x8a>;
 
 let isCommutable = 1 in {
 defm EQ : ComparisonInt<SETEQ, "eq  ", 0x46, 0x68>;