From a72cf1129dd4856f505e3e97dcfa45dcc3f3ff73 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 9 Jan 2017 06:21:28 +0000 Subject: [PATCH] [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 --- lib/Target/WebAssembly/WebAssemblyInstrInteger.td | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.50.1