From 8ad2f9873939b1815bd4f788969ca210df42a8d4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 18 Jul 2009 21:47:15 +0000 Subject: [PATCH] fix some typos pointed out by Hidenobu Seki git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76342 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 2 +- docs/SourceLevelDebugging.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 258407328ec..44e6fa126e0 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -790,7 +790,7 @@ variables always define a pointer to their "content" type because they describe a region of memory, and all memory objects in LLVM are accessed through pointers.

-

A global variable may be declared to reside in a target-specifc numbered +

A global variable may be declared to reside in a target-specific numbered address space. For targets that support them, address spaces may affect how optimizations are performed and/or what target instructions are used to access the variable. The default address space is zero. The address space qualifier diff --git a/docs/SourceLevelDebugging.html b/docs/SourceLevelDebugging.html index 11b3600bdbe..fab63046a48 100644 --- a/docs/SourceLevelDebugging.html +++ b/docs/SourceLevelDebugging.html @@ -80,7 +80,7 @@ height="369"> debug information in LLVM. It describes the actual format that the LLVM debug information takes, which is useful for those interested in creating front-ends or dealing directly with the information. - Further, this document provides specifc examples of what debug information + Further, this document provides specific examples of what debug information for C/C++.