diff options
| author | Thomas Lively <tlively@google.com> | 2018-10-25 19:06:13 +0000 |
|---|---|---|
| committer | Thomas Lively <tlively@google.com> | 2018-10-25 19:06:13 +0000 |
| commit | 0aad98fd07ae8b554fd75e335a21ccb0b1615c9b (patch) | |
| tree | 576e7f619f6545f6215dfe040d4d686a63a24eab /llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td | |
| parent | 19a8adc9bd2785698c1d5429503fd406d95b6c53 (diff) | |
| download | bcm5719-llvm-0aad98fd07ae8b554fd75e335a21ccb0b1615c9b.tar.gz bcm5719-llvm-0aad98fd07ae8b554fd75e335a21ccb0b1615c9b.zip | |
[WebAssembly] Use target-independent saturating add
Reviewers: aheejin, dschuff
Subscribers: sbc100, jgravelle-google, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D53721
llvm-svn: 345299
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td')
| -rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td b/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td index ff6bbab705c..caad638e9e3 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td @@ -469,9 +469,9 @@ multiclass SIMDBinarySat<SDNode node, string name, bits<32> baseInst> { // Saturating integer addition: add_saturate_s / add_saturate_u let isCommutable = 1 in { defm ADD_SAT_S : - SIMDBinarySat<int_wasm_add_saturate_signed, "add_saturate_s", 40>; + SIMDBinarySat<saddsat, "add_saturate_s", 40>; defm ADD_SAT_U : - SIMDBinarySat<int_wasm_add_saturate_unsigned, "add_saturate_u", 41>; + SIMDBinarySat<uaddsat, "add_saturate_u", 41>; } // isCommutable = 1 // Saturating integer subtraction: sub_saturate_s / sub_saturate_u |

