diff options
author | Xing GUO <higuoxing@gmail.com> | 2019-01-18 03:56:37 +0000 |
---|---|---|
committer | Xing GUO <higuoxing@gmail.com> | 2019-01-18 03:56:37 +0000 |
commit | 454e51b3e519b622011b8011ea181f2b16289be4 (patch) | |
tree | 2556d503b29cc502cba639da43112d2a31043238 | |
parent | 0c59e6e246021d623a90413ae3d3f12c3404ad9d (diff) | |
download | bcm5719-llvm-454e51b3e519b622011b8011ea181f2b16289be4.tar.gz bcm5719-llvm-454e51b3e519b622011b8011ea181f2b16289be4.zip |
[DOCS] it it => it
Summary: it it => it for LLVM Language Reference Manual
Reviewers: aaron.ballman, Higuoxing, liangdzou
Reviewed By: aaron.ballman, Higuoxing, liangdzou
Subscribers: Higuoxing, llvm-commits
Differential Revision: https://reviews.llvm.org/D56533
llvm-svn: 351517
-rw-r--r-- | llvm/docs/LangRef.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index b28f2e6f8f6..1110f8127d9 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -6431,7 +6431,7 @@ The '``ret``' instruction optionally accepts a single argument, the return value. The type of the return value must be a ':ref:`first class <t_firstclass>`' type. -A function is not :ref:`well formed <wellformed>` if it it has a non-void +A function is not :ref:`well formed <wellformed>` if it has a non-void return type and contains a '``ret``' instruction with no return value or a return value with a type that does not match its type, or if it has a void return type and contains a '``ret``' instruction with a return |