diff --git a/docs/LangRef.html b/docs/LangRef.html index 9f3ef0d8527..3b38ee0d256 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -454,7 +454,6 @@ All Global Variables and Functions have one of the following types of linkage: until linked, if not linked, the symbol becomes null instead of being an undefined reference. -
externally visible:
@@ -462,6 +461,7 @@ All Global Variables and Functions have one of the following types of linkage: visible, meaning that it participates in linkage and can be used to resolve external symbol references. +

The next two types of linkage are targeted for Microsoft Windows platform @@ -779,13 +779,12 @@ desired. The syntax is very simple:

A module may specify a target specific data layout string that specifies how -data is to be laid out in memory. The syntax for the data layout is simply:
-

    target datalayout = "layout specification"
-
-The layout specification consists of a list of specifications separated -by the minus sign character ('-'). Each specification starts with a letter -and may include other information after the letter to define some aspect of the -data layout. The specifications accepted are as follows:

+data is to be laid out in memory. The syntax for the data layout is simply:

+
    target datalayout = "layout specification"
+

The layout specification consists of a list of specifications +separated by the minus sign character ('-'). Each specification starts with a +letter and may include other information after the letter to define some +aspect of the data layout. The specifications accepted are as follows:

E
Specifies that the target lays out data in big-endian form. That is, the @@ -4690,6 +4689,7 @@ cause these bits to be set: 0xFF1F.

llvm.part.set(0xFFFF, 0, Y, 7, 4) -> 0x0060 llvm.part.set(0xFFFF, 0, Y, 8, 3) -> 0x00F0 llvm.part.set(0xFFFF, 0, Y, 3, 8) -> 0xFE07 +