WebAssembly: NFC rename shr/sar
[oota-llvm.git] / lib / Target / WebAssembly / WebAssemblyInstrInteger.td
index 16ed7acbb9d369e4b565c87441357c6ba5f09971..16a21082bd397812edf5e89e6a5c6b4908ca0544 100644 (file)
@@ -23,8 +23,8 @@ defm AND : BinaryInt<and>;
 defm IOR : BinaryInt<or>;
 defm XOR : BinaryInt<xor>;
 defm SHL : BinaryInt<shl>;
-defm SHR : BinaryInt<srl>;
-defm SAR : BinaryInt<sra>;
+defm SHR_U : BinaryInt<srl>;
+defm SHR_S : BinaryInt<sra>;
 
 defm EQ : ComparisonInt<SETEQ>;
 defm NE : ComparisonInt<SETNE>;