diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-02 17:31:42 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-02 17:31:42 +0000 |
commit | fdfca79de0935f6fb273f59637ab00246ddedb91 (patch) | |
tree | e98e1ac9d69a83d2825a2dae202565fa2294052e | |
parent | c2ac2d534763c6592c917e3776270d377e9c3589 (diff) |
Fix the syntax of add/sub/mul nsw/nuw and sdiv exact.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80805 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/LangRef.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 44ef03b4ef..586aefc874 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2668,9 +2668,9 @@ Instruction</a> </div> <h5>Syntax:</h5> <pre> <result> = add <ty> <op1>, <op2> <i>; yields {ty}:result</i> - <result> = nuw add <ty> <op1>, <op2> <i>; yields {ty}:result</i> - <result> = nsw add <ty> <op1>, <op2> <i>; yields {ty}:result</i> - <result> = nuw nsw add <ty> <op1>, <op2> <i>; yields {ty}:result</i> + <result> = add nuw <ty> <op1>, <op2> <i>; yields {ty}:result</i> + <result> = add nsw <ty> <op1>, <op2> <i>; yields {ty}:result</i> + <result> = add nuw nsw <ty> <op1>, <op2> <i>; yields {ty}:result</i> </pre> <h5>Overview:</h5> @@ -2742,9 +2742,9 @@ Instruction</a> </div> <h5>Syntax:</h5> <pre> <result> = sub <ty> <op1>, <op2> <i>; yields {ty}:result</i> - <result> = nuw sub <ty> <op1>, <op2> <i>; yields {ty}:result</i> - <result> = nsw sub <ty> <op1>, <op2> <i>; yields {ty}:result</i> - <result> = nuw nsw sub <ty> <op1>, <op2> <i>; yields {ty}:result</i> + <result> = sub nuw <ty> <op1>, <op2> <i>; yields {ty}:result</i> + <result> = sub nsw <ty> <op1>, <op2> <i>; yields {ty}:result</i> + <result> = sub nuw nsw <ty> <op1>, <op2> <i>; yields {ty}:result</i> </pre> <h5>Overview:</h5> @@ -2829,9 +2829,9 @@ Instruction</a> </div> <h5>Syntax:</h5> <pre> <result> = mul <ty> <op1>, <op2> <i>; yields {ty}:result</i> - <result> = nuw mul <ty> <op1>, <op2> <i>; yields {ty}:result</i> - <result> = nsw mul <ty> <op1>, <op2> <i>; yields {ty}:result</i> - <result> = nuw nsw mul <ty> <op1>, <op2> <i>; yields {ty}:result</i> + <result> = mul nuw <ty> <op1>, <op2> <i>; yields {ty}:result</i> + <result> = mul nsw <ty> <op1>, <op2> <i>; yields {ty}:result</i> + <result> = mul nuw nsw <ty> <op1>, <op2> <i>; yields {ty}:result</i> </pre> <h5>Overview:</h5> @@ -2941,7 +2941,7 @@ Instruction</a> </div> <h5>Syntax:</h5> <pre> <result> = sdiv <ty> <op1>, <op2> <i>; yields {ty}:result</i> - <result> = exact sdiv <ty> <op1>, <op2> <i>; yields {ty}:result</i> + <result> = sdiv exact <ty> <op1>, <op2> <i>; yields {ty}:result</i> </pre> <h5>Overview:</h5> |