diff options
author | John Criswell <criswell@uiuc.edu> | 2004-03-12 21:19:06 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2004-03-12 21:19:06 +0000 |
commit | 6794d9268b78f3c403a87ddb0711bbb01e7cfe65 (patch) | |
tree | 9430e6526410ba6c638cdc23d68349ee5541ff83 | |
parent | 799269128ca8bf601320fecb495d62cbf2e85aa5 (diff) |
Fixed grammar typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12343 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/LangRef.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index de0ac2efdf..ae389d1db5 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -189,7 +189,7 @@ character can be used in a name.</li> <li>Unnamed values are represented as an unsigned numeric value with a '%' prefix. For example, %12, %2, %44.</li> </ol> -<p>LLVM requires the values start with a '%' sign for two reasons: +<p>LLVM requires that values start with a '%' sign for two reasons: Compilers don't need to worry about name clashes with reserved words, and the set of reserved words may be expanded in the future without penalty. Additionally, unnamed identifiers allow a compiler to quickly |