diff options
author | Dan Gohman <dan433584@gmail.com> | 2016-12-21 23:09:42 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2016-12-21 23:09:42 +0000 |
commit | a2b9b349e753125db2b56e6630d69326da9e59c0 (patch) | |
tree | 2aca88223942e2b97f8ce36f6ffe318cb5ed8a5a /llvm/lib/Target/WebAssembly | |
parent | 1b4137a7f902d9e67bad20c4d71fbf05c41c7855 (diff) | |
download | bcm5719-llvm-a2b9b349e753125db2b56e6630d69326da9e59c0.tar.gz bcm5719-llvm-a2b9b349e753125db2b56e6630d69326da9e59c0.zip |
[WebAssembly] Fix the opcode value for i64.rotr.
llvm-svn: 290281
Diffstat (limited to 'llvm/lib/Target/WebAssembly')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td b/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td index 7cdeb397be9..8a3248ee669 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td @@ -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>; |