diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-05-24 19:13:27 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-05-24 19:13:27 +0000 |
| commit | c87f3dff517608007e299c7d47698259f30c8cd6 (patch) | |
| tree | 029c76bf36688e1d400fd74100e6dffca03cdd32 | |
| parent | 80c94a4a047bc2641c26a3324501aa7244a813f8 (diff) | |
| download | bcm5719-llvm-c87f3dff517608007e299c7d47698259f30c8cd6.tar.gz bcm5719-llvm-c87f3dff517608007e299c7d47698259f30c8cd6.zip | |
remove contradiction owen noticed
llvm-svn: 37327
| -rw-r--r-- | llvm/docs/LangRef.html | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index e220764ac6e..b01d3793076 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -2909,10 +2909,7 @@ also be of <a href="#t_integer">integer</a> type. The bit size of the <h5>Semantics:</h5> <p>The <tt>zext</tt> fills the high order bits of the <tt>value</tt> with zero -bits until it reaches the size of the destination type, <tt>ty2</tt>. When the -the operand and the type are the same size, no bit filling is done and the -cast is considered a <i>no-op cast</i> because no bits change (only the type -changes).</p> +bits until it reaches the size of the destination type, <tt>ty2</tt>.</p> <p>When zero extending from i1, the result will always be either 0 or 1.</p> @@ -2949,9 +2946,7 @@ also be of <a href="#t_integer">integer</a> type. The bit size of the <p> The '<tt>sext</tt>' instruction performs a sign extension by copying the sign bit (highest order bit) of the <tt>value</tt> until it reaches the bit size of -the type <tt>ty2</tt>. When the the operand and the type are the same size, -no bit filling is done and the cast is considered a <i>no-op cast</i> because -no bits change (only the type changes).</p> +the type <tt>ty2</tt>.</p> <p>When sign extending from i1, the extension always results in -1 or 0.</p> |

