diff options
author | Dan Gohman <gohman@apple.com> | 2007-11-05 23:35:22 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-11-05 23:35:22 +0000 |
commit | 80176319f3ea5d3d943aa540e76381e8567f5dcb (patch) | |
tree | 481f92f987d3ba4c8c2f4d117b6ec0c93fc69032 /docs | |
parent | cff550995b2aef56a3c9956520249ac662df5696 (diff) | |
download | external_llvm-80176319f3ea5d3d943aa540e76381e8567f5dcb.zip external_llvm-80176319f3ea5d3d943aa540e76381e8567f5dcb.tar.gz external_llvm-80176319f3ea5d3d943aa540e76381e8567f5dcb.tar.bz2 |
Add support for vector remainder operations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43744 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.html | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index f6895a0..46ec87e 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2093,7 +2093,8 @@ unsigned division of its two arguments.</p> <h5>Arguments:</h5> <p>The two arguments to the '<tt>urem</tt>' instruction must be <a href="#t_integer">integer</a> values. Both arguments must have identical -types.</p> +types. This instruction can also take <a href="#t_vector">vector</a> versions +of the values in which case the elements must be integers.</p> <h5>Semantics:</h5> <p>This instruction returns the unsigned integer <i>remainder</i> of a division. This instruction always performs an unsigned division to get the remainder, @@ -2112,7 +2113,10 @@ Instruction</a> </div> </pre> <h5>Overview:</h5> <p>The '<tt>srem</tt>' instruction returns the remainder from the -signed division of its two operands.</p> +signed division of its two operands. This instruction can also take +<a href="#t_vector">vector</a> versions of the values in which case +the elements must be integers.</p> +</p> <h5>Arguments:</h5> <p>The two arguments to the '<tt>srem</tt>' instruction must be <a href="#t_integer">integer</a> values. Both arguments must have identical @@ -2144,7 +2148,8 @@ division of its two operands.</p> <h5>Arguments:</h5> <p>The two arguments to the '<tt>frem</tt>' instruction must be <a href="#t_floating">floating point</a> values. Both arguments must have -identical types.</p> +identical types. This instruction can also take <a href="#t_vector">vector</a> +versions of floating point values.</p> <h5>Semantics:</h5> <p>This instruction returns the <i>remainder</i> of a division.</p> <h5>Example:</h5> |