diff options
| author | Thomas Lively <tlively@google.com> | 2018-10-24 22:49:55 +0000 |
|---|---|---|
| committer | Thomas Lively <tlively@google.com> | 2018-10-24 22:49:55 +0000 |
| commit | 30f1d69115e45229c9c9ccb4752a1e9a339a71e3 (patch) | |
| tree | 32e76f31c20d6980caa3d1f1bffda255062d7ee7 /llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td | |
| parent | 654d3a9577d9782b03edaff7be369fa13e9ba14b (diff) | |
| download | bcm5719-llvm-30f1d69115e45229c9c9ccb4752a1e9a339a71e3.tar.gz bcm5719-llvm-30f1d69115e45229c9c9ccb4752a1e9a339a71e3.zip | |
[NFC] Rename minnan and maxnan to minimum and maximum
Summary:
Changes all uses of minnan/maxnan to minimum/maximum
globally. These names emphasize that the semantic difference between
these operations is more than just NaN-propagation.
Reviewers: arsenm, aheejin, dschuff, javed.absar
Subscribers: jholewinski, sdardis, wdng, sbc100, jgravelle-google, jrtc27, atanasyan, llvm-commits
Differential Revision: https://reviews.llvm.org/D53112
llvm-svn: 345218
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 711d42a219e..08bb39748b8 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td @@ -757,10 +757,10 @@ multiclass SIMDBinaryFP<SDNode node, string name, bits<32> baseInst> { } // NaN-propagating minimum: min -defm MIN : SIMDBinaryFP<fminnan, "min", 129>; +defm MIN : SIMDBinaryFP<fminimum, "min", 129>; // NaN-propagating maximum: max -defm MAX : SIMDBinaryFP<fmaxnan, "max", 131>; +defm MAX : SIMDBinaryFP<fmaximum, "max", 131>; //===----------------------------------------------------------------------===// // Floating-point arithmetic |

