diff options
author | JF Bastien <jfb@google.com> | 2015-09-08 17:21:21 +0000 |
---|---|---|
committer | JF Bastien <jfb@google.com> | 2015-09-08 17:21:21 +0000 |
commit | 749ed88aa5601118173aa0e478c46a9400ad700f (patch) | |
tree | fd00c26ee3236af8fff23730be98c0588a744fdb /llvm/lib/Target | |
parent | 25425ad9207f3caa2dc466c5be9ee0df8dfac05b (diff) | |
download | bcm5719-llvm-749ed88aa5601118173aa0e478c46a9400ad700f.tar.gz bcm5719-llvm-749ed88aa5601118173aa0e478c46a9400ad700f.zip |
WebAssembly: NFC rename shr/sar
Renamed from: https://github.com/WebAssembly/design/pull/332
llvm-svn: 247028
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td b/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td index 16ed7acbb9d..16a21082bd3 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td @@ -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>; |