From: Dan Gohman Date: Mon, 9 Jan 2017 06:21:28 +0000 (+0000) Subject: [WebAssembly] Fix the opcode values for i64.eq and i64.ne. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a72cf1129dd4856f505e3e97dcfa45dcc3f3ff73;p=llvm [WebAssembly] Fix the opcode values for i64.eq and i64.ne. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@291424 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/WebAssembly/WebAssemblyInstrInteger.td b/lib/Target/WebAssembly/WebAssemblyInstrInteger.td index 8a3248ee669..e872dc21984 100644 --- a/lib/Target/WebAssembly/WebAssemblyInstrInteger.td +++ b/lib/Target/WebAssembly/WebAssemblyInstrInteger.td @@ -40,8 +40,8 @@ defm ROTL : BinaryInt; defm ROTR : BinaryInt; let isCommutable = 1 in { -defm EQ : ComparisonInt; -defm NE : ComparisonInt; +defm EQ : ComparisonInt; +defm NE : ComparisonInt; } // isCommutable = 1 defm LT_S : ComparisonInt; defm LT_U : ComparisonInt;