Skip to content

Commit 06b9f9e

Browse files
committed
[typo] An LLVM.
llvm-svn: 188589
1 parent 87198cd commit 06b9f9e

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

llvm/docs/CommandGuide/llvm-nm.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ D
7979
Because LLVM bitcode files typically contain objects that are not considered to
8080
have addresses until they are linked into an executable image or dynamically
8181
compiled "just-in-time", :program:`llvm-nm` does not print an address for any
82-
symbol in a LLVM bitcode file, even symbols which are defined in the bitcode
82+
symbol in an LLVM bitcode file, even symbols which are defined in the bitcode
8383
file.
8484

8585

llvm/docs/GettingStarted.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1312,7 +1312,7 @@ Example with clang
13121312
Clang works just like GCC by default. The standard -S and -c arguments
13131313
work as usual (producing a native .s or .o file, respectively).
13141314

1315-
#. Next, compile the C file into a LLVM bitcode file:
1315+
#. Next, compile the C file into an LLVM bitcode file:
13161316

13171317
.. code-block:: console
13181318

llvm/docs/GettingStartedVS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ An Example Using the LLVM Tool Chain
164164
return 0;
165165
}
166166
167-
2. Next, compile the C file into a LLVM bitcode file:
167+
2. Next, compile the C file into an LLVM bitcode file:
168168

169169
.. code-block:: bat
170170

llvm/docs/HistoricalNotes/2003-06-25-Reoptimizer1.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,6 @@ is supposed to be cache-line-aligned, but it is not page-aligned.
132132
We generate instrumentation traces and optimized traces into separate
133133
trace caches. We keep the instrumented code around because you don't
134134
want to delete a trace when you still might have to return to it
135-
(i.e., return from a llvm_first_trigger() or countPath() call.)
135+
(i.e., return from an llvm_first_trigger() or countPath() call.)
136136

137137

llvm/docs/YamlIO.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ some time format (e.g. 4-May-2012 10:30pm). YAML I/O has a way to support
408408
custom formatting and parsing of scalar types by specializing ScalarTraits<> on
409409
your data type. When writing, YAML I/O will provide the native type and
410410
your specialization must create a temporary llvm::StringRef. When reading,
411-
YAML I/O will provide a llvm::StringRef of scalar and your specialization
411+
YAML I/O will provide an llvm::StringRef of scalar and your specialization
412412
must convert that to your native data type. An outline of a custom scalar type
413413
looks like:
414414

llvm/include/llvm-c/Core.h

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ unsigned LLVMGetMDKindID(const char* Name, unsigned SLen);
460460
/**
461461
* @defgroup LLVMCCoreModule Modules
462462
*
463-
* Modules represent the top-level structure in a LLVM program. An LLVM
463+
* Modules represent the top-level structure in an LLVM program. An LLVM
464464
* module is effectively a translation unit or a collection of
465465
* translation units merged together.
466466
*
@@ -1041,7 +1041,7 @@ LLVMTypeRef LLVMX86MMXType(void);
10411041
* hierarchy of classes within this type. Depending on the instance
10421042
* obtained, not all APIs are available.
10431043
*
1044-
* Callers can determine the type of a LLVMValueRef by calling the
1044+
* Callers can determine the type of an LLVMValueRef by calling the
10451045
* LLVMIsA* family of functions (e.g. LLVMIsAArgument()). These
10461046
* functions are defined by a macro, so it isn't obvious which are
10471047
* available by looking at the Doxygen source code. Instead, look at the
@@ -1181,7 +1181,7 @@ LLVMBool LLVMIsUndef(LLVMValueRef Val);
11811181
/**
11821182
* Convert value instances between types.
11831183
*
1184-
* Internally, a LLVMValueRef is "pinned" to a specific type. This
1184+
* Internally, an LLVMValueRef is "pinned" to a specific type. This
11851185
* series of functions allows you to cast an instance to a specific
11861186
* type.
11871187
*
@@ -1203,7 +1203,7 @@ LLVM_FOR_EACH_VALUE_SUBCLASS(LLVM_DECLARE_VALUE_CAST)
12031203
* This module defines functions that allow you to inspect the uses of a
12041204
* LLVMValueRef.
12051205
*
1206-
* It is possible to obtain a LLVMUseRef for any LLVMValueRef instance.
1206+
* It is possible to obtain an LLVMUseRef for any LLVMValueRef instance.
12071207
* Each LLVMUseRef (which corresponds to a llvm::Use instance) holds a
12081208
* llvm::User and llvm::Value.
12091209
*
@@ -1806,7 +1806,7 @@ LLVMValueRef LLVMGetParam(LLVMValueRef Fn, unsigned Index);
18061806
/**
18071807
* Obtain the function to which this argument belongs.
18081808
*
1809-
* Unlike other functions in this group, this one takes a LLVMValueRef
1809+
* Unlike other functions in this group, this one takes an LLVMValueRef
18101810
* that corresponds to a llvm::Attribute.
18111811
*
18121812
* The returned LLVMValueRef is the llvm::Function to which this
@@ -1831,7 +1831,7 @@ LLVMValueRef LLVMGetLastParam(LLVMValueRef Fn);
18311831
/**
18321832
* Obtain the next parameter to a function.
18331833
*
1834-
* This takes a LLVMValueRef obtained from LLVMGetFirstParam() (which is
1834+
* This takes an LLVMValueRef obtained from LLVMGetFirstParam() (which is
18351835
* actually a wrapped iterator) and obtains the next parameter from the
18361836
* underlying iterator.
18371837
*/
@@ -1980,12 +1980,12 @@ void LLVMGetMDNodeOperands(LLVMValueRef V, LLVMValueRef *Dest);
19801980
LLVMValueRef LLVMBasicBlockAsValue(LLVMBasicBlockRef BB);
19811981

19821982
/**
1983-
* Determine whether a LLVMValueRef is itself a basic block.
1983+
* Determine whether an LLVMValueRef is itself a basic block.
19841984
*/
19851985
LLVMBool LLVMValueIsBasicBlock(LLVMValueRef Val);
19861986

19871987
/**
1988-
* Convert a LLVMValueRef to a LLVMBasicBlockRef instance.
1988+
* Convert an LLVMValueRef to an LLVMBasicBlockRef instance.
19891989
*/
19901990
LLVMBasicBlockRef LLVMValueAsBasicBlock(LLVMValueRef Val);
19911991

@@ -2142,7 +2142,7 @@ LLVMValueRef LLVMGetFirstInstruction(LLVMBasicBlockRef BB);
21422142
/**
21432143
* Obtain the last instruction in a basic block.
21442144
*
2145-
* The returned LLVMValueRef corresponds to a LLVM:Instruction.
2145+
* The returned LLVMValueRef corresponds to an LLVM:Instruction.
21462146
*/
21472147
LLVMValueRef LLVMGetLastInstruction(LLVMBasicBlockRef BB);
21482148

@@ -2324,12 +2324,12 @@ void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
23242324
unsigned LLVMCountIncoming(LLVMValueRef PhiNode);
23252325

23262326
/**
2327-
* Obtain an incoming value to a PHI node as a LLVMValueRef.
2327+
* Obtain an incoming value to a PHI node as an LLVMValueRef.
23282328
*/
23292329
LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index);
23302330

23312331
/**
2332-
* Obtain an incoming value to a PHI node as a LLVMBasicBlockRef.
2332+
* Obtain an incoming value to a PHI node as an LLVMBasicBlockRef.
23332333
*/
23342334
LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index);
23352335

llvm/include/llvm/CodeGen/MachineRelocation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class MachineRelocation {
5757
union {
5858
void *Result; // If this has been resolved to a resolved pointer
5959
GlobalValue *GV; // If this is a pointer to a GV or an indirect ref.
60-
MachineBasicBlock *MBB; // If this is a pointer to a LLVM BB
60+
MachineBasicBlock *MBB; // If this is a pointer to an LLVM BB
6161
const char *ExtSym; // If this is a pointer to a named symbol
6262
unsigned Index; // Constant pool / jump table index
6363
unsigned GOTIndex; // Index in the GOT of this symbol/global

llvm/include/llvm/CodeGen/PseudoSourceValue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ namespace llvm {
4444
virtual bool isAliased(const MachineFrameInfo *) const;
4545

4646
/// mayAlias - Return true if the memory pointed to by this
47-
/// PseudoSourceValue can ever alias a LLVM IR Value.
47+
/// PseudoSourceValue can ever alias an LLVM IR Value.
4848
virtual bool mayAlias(const MachineFrameInfo *) const;
4949

5050
/// classof - Methods for support type inquiry through isa, cast, and

llvm/include/llvm/TableGen/TableGenBackend.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace llvm {
2020

2121
class raw_ostream;
2222

23-
/// emitSourceFileHeader - Output a LLVM style file header to the specified
23+
/// emitSourceFileHeader - Output an LLVM style file header to the specified
2424
/// raw_ostream.
2525
void emitSourceFileHeader(StringRef Desc, raw_ostream &OS);
2626

0 commit comments

Comments
 (0)