From: Dan Gohman Date: Mon, 1 Mar 2010 17:41:39 +0000 (+0000) Subject: Fix spelling. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b55a1ee36c4c719b55730a0099e3c2d5c42e0f05;p=oota-llvm.git Fix spelling. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97447 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.html b/docs/LangRef.html index 599bfa66a22..88c89a3a6a0 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -848,7 +848,7 @@ define i32 @main() { ; i32()*
-

LLVM function definitions consist of the "define" keyord, an +

LLVM function definitions consist of the "define" keyword, an optional linkage type, an optional visibility style, an optional calling convention, a return type, an optional @@ -4104,11 +4104,11 @@ Instruction

The optional !nontemporal metadata must reference a single metatadata name <index> corresponding to a metadata node with - one i32 entry of value 1. The existance of + one i32 entry of value 1. The existence of the !nontemporal metatadata on the instruction tells the optimizer and code generator that this load is not expected to be reused in the cache. The code generator may select special instructions to save cache bandwidth, - such as the MOVNT intruction on x86.

+ such as the MOVNT instruction on x86.

Semantics:

The location of memory pointed to is loaded. If the value being loaded is of @@ -4164,11 +4164,11 @@ Instruction

The optional !nontemporal metadata must reference a single metatadata name corresponding to a metadata node with one i32 entry of - value 1. The existance of the !nontemporal metatadata on the + value 1. The existence of the !nontemporal metatadata on the instruction tells the optimizer and code generator that this load is not expected to be reused in the cache. The code generator may select special instructions to save cache bandwidth, such as the - MOVNT intruction on x86.

+ MOVNT instruction on x86.

Semantics:
@@ -4964,7 +4964,7 @@ entry: op1 is equal to op2.
  • ogt: yields true if both operands are not a QNAN and - op1 is greather than op2.
  • + op1 is greater than op2.
  • oge: yields true if both operands are not a QNAN and op1 is greater than or equal to op2.
  • @@ -5209,7 +5209,7 @@ Loop: ; Infinite loop that counts from 0 on up... standard C99 library as being the C99 library functions, and may perform optimizations or generate code for them under that assumption. This is something we'd like to change in the future to provide better support for -freestanding environments and non-C-based langauges.

    +freestanding environments and non-C-based languages.

    @@ -5765,7 +5765,7 @@ LLVM.

    Semantics:

    This intrinsic does not modify the behavior of the program. Backends that do - not support this intrinisic may ignore it.

    + not support this intrinsic may ignore it.

    @@ -5845,7 +5845,7 @@ LLVM.

    number of bytes to copy, and the fourth argument is the alignment of the source and destination locations.

    -

    If the call to this intrinisic has an alignment value that is not 0 or 1, +

    If the call to this intrinsic has an alignment value that is not 0 or 1, then the caller guarantees that both the source and destination pointers are aligned to that boundary.

    @@ -5895,7 +5895,7 @@ LLVM.

    number of bytes to copy, and the fourth argument is the alignment of the source and destination locations.

    -

    If the call to this intrinisic has an alignment value that is not 0 or 1, +

    If the call to this intrinsic has an alignment value that is not 0 or 1, then the caller guarantees that the source and destination pointers are aligned to that boundary.

    @@ -5943,7 +5943,7 @@ LLVM.

    specifying the number of bytes to fill, and the fourth argument is the known alignment of destination location.

    -

    If the call to this intrinisic has an alignment value that is not 0 or 1, +

    If the call to this intrinsic has an alignment value that is not 0 or 1, then the caller guarantees that the destination pointer is aligned to that boundary.

    @@ -6714,7 +6714,7 @@ LLVM.

    Arguments:

    The llvm.memory.barrier intrinsic requires five boolean arguments. The first four arguments enables a specific barrier as listed below. The - fith argument specifies that the barrier applies to io or device or uncached + fifth argument specifies that the barrier applies to io or device or uncached memory.