diff options
author | Gabor Greif <ggreif@gmail.com> | 2009-03-11 20:04:08 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2009-03-11 20:04:08 +0000 |
commit | 605c7cab75e00172a4927f338eb770e8410025c8 (patch) | |
tree | b0b6561f4329882eff2e02a77e492003c2249bb9 | |
parent | bfdf23f07c73d29bddadb54a60316093478b5b2e (diff) | |
download | bcm5719-llvm-605c7cab75e00172a4927f338eb770e8410025c8.tar.gz bcm5719-llvm-605c7cab75e00172a4927f338eb770e8410025c8.zip |
fix validator errors
llvm-svn: 66688
-rw-r--r-- | llvm/docs/tutorial/LangImpl4.html | 2 | ||||
-rw-r--r-- | llvm/docs/tutorial/OCamlLangImpl1.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/LangImpl4.html b/llvm/docs/tutorial/LangImpl4.html index 7e1fcfa0ff5..9a3bfd21471 100644 --- a/llvm/docs/tutorial/LangImpl4.html +++ b/llvm/docs/tutorial/LangImpl4.html @@ -87,7 +87,7 @@ entry: </pre> </div> -Constant folding, as seen above, in particular, is a very common and very +<p>Constant folding, as seen above, in particular, is a very common and very important optimization: so much so that many language implementors implement constant folding support in their AST representation.</p> diff --git a/llvm/docs/tutorial/OCamlLangImpl1.html b/llvm/docs/tutorial/OCamlLangImpl1.html index 77b492fd5eb..3c0fd8b1c69 100644 --- a/llvm/docs/tutorial/OCamlLangImpl1.html +++ b/llvm/docs/tutorial/OCamlLangImpl1.html @@ -277,7 +277,7 @@ and lex_ident buffer = parser </pre> </div> -Numeric values are similar:</p> +<p>Numeric values are similar:</p> <div class="doc_code"> <pre> |