From f90f5519985d30e6a9c3ee5e7bd32fdc78062467 Mon Sep 17 00:00:00 2001 From: Hiroshi Inoue Date: Tue, 16 Jan 2018 13:19:48 +0000 Subject: [PATCH] [NFC] fix trivial typos in documents "the the" -> "the" git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@322552 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/BitCodeFormat.rst | 2 +- docs/LangRef.rst | 4 ++-- docs/tutorial/LangImpl04.rst | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/BitCodeFormat.rst b/docs/BitCodeFormat.rst index 8878943b424..39a7a925e68 100644 --- a/docs/BitCodeFormat.rst +++ b/docs/BitCodeFormat.rst @@ -903,7 +903,7 @@ PARAMATTR_CODE_ENTRY Record The ``ENTRY`` record (code 2) contains a variable number of values describing a unique set of function parameter attributes. Each *attrgrp* value is used as a -key with which to look up an entry in the the attribute group table described +key with which to look up an entry in the attribute group table described in the ``PARAMATTR_GROUP_BLOCK`` block. .. _PARAMATTR_CODE_ENTRY_OLD: diff --git a/docs/LangRef.rst b/docs/LangRef.rst index 462fbccdb8f..569e4a98d18 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -4494,7 +4494,7 @@ The current supported vocabulary is limited: - ``DW_OP_plus_uconst, 93`` adds ``93`` to the working expression. - ``DW_OP_LLVM_fragment, 16, 8`` specifies the offset and size (``16`` and ``8`` here, respectively) of the variable fragment from the working expression. Note - that contrary to DW_OP_bit_piece, the offset is describing the the location + that contrary to DW_OP_bit_piece, the offset is describing the location within the described source variable. - ``DW_OP_swap`` swaps top two stack entries. - ``DW_OP_xderef`` provides extended dereference mechanism. The entry at the top @@ -13207,7 +13207,7 @@ Semantics: This function returns the nonnegative square root of the specified value. If the value is less than negative zero, a floating point exception occurs -and the the return value is architecture specific. +and the return value is architecture specific. '``llvm.experimental.constrained.pow``' Intrinsic diff --git a/docs/tutorial/LangImpl04.rst b/docs/tutorial/LangImpl04.rst index 921c4dcc21a..b8e55b0fb21 100644 --- a/docs/tutorial/LangImpl04.rst +++ b/docs/tutorial/LangImpl04.rst @@ -380,7 +380,7 @@ demonstrates very basic functionality, but can we do more? Function definitions and calls also work, but something went very wrong on that last line. The call looks valid, so what happened? As you may have guessed from -the the API a Module is a unit of allocation for the JIT, and testfunc was part +the API a Module is a unit of allocation for the JIT, and testfunc was part of the same module that contained anonymous expression. When we removed that module from the JIT to free the memory for the anonymous expression, we deleted the definition of ``testfunc`` along with it. Then, when we tried to call -- 2.11.0