]> granicus.if.org Git - llvm/commitdiff
[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)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@290281 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/WebAssembly/WebAssemblyInstrInteger.td

index 7cdeb397be9104445fcfee7bd15682f2fe4b9778..8a3248ee669ea2718a47d2e279ba4f099ee996f7 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>;