diff options
author | Gabor Greif <ggreif@gmail.com> | 2008-05-21 18:30:15 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2008-05-21 18:30:15 +0000 |
commit | e48de9c781e4683bb94103e1bc775bc93acbe91f (patch) | |
tree | 47aca06ef7a4bd00a258dd1748e73887e4aefbc3 /llvm/docs/tutorial | |
parent | 16f036cbe8c9552f24045db842f2e4b193b9be9e (diff) | |
download | bcm5719-llvm-e48de9c781e4683bb94103e1bc775bc93acbe91f.tar.gz bcm5719-llvm-e48de9c781e4683bb94103e1bc775bc93acbe91f.zip |
adapt to new API
llvm-svn: 51387
Diffstat (limited to 'llvm/docs/tutorial')
-rw-r--r-- | llvm/docs/tutorial/LangImpl3.html | 2 | ||||
-rw-r--r-- | llvm/docs/tutorial/OCamlLangImpl3.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/LangImpl3.html b/llvm/docs/tutorial/LangImpl3.html index f77f8f83032..3228e01da12 100644 --- a/llvm/docs/tutorial/LangImpl3.html +++ b/llvm/docs/tutorial/LangImpl3.html @@ -166,7 +166,7 @@ internally (<tt>APFloat</tt> has the capability of holding floating point constants of <em>A</em>rbitrary <em>P</em>recision). This code basically just creates and returns a <tt>ConstantFP</tt>. Note that in the LLVM IR that constants are all uniqued together and shared. For this reason, the API -uses "the foo::get(..)" idiom instead of "new foo(..)" or "foo::create(..)".</p> +uses "the foo::get(..)" idiom instead of "new foo(..)" or "foo::Create(..)".</p> <div class="doc_code"> <pre> diff --git a/llvm/docs/tutorial/OCamlLangImpl3.html b/llvm/docs/tutorial/OCamlLangImpl3.html index b396ef07ae5..0ff0703d18c 100644 --- a/llvm/docs/tutorial/OCamlLangImpl3.html +++ b/llvm/docs/tutorial/OCamlLangImpl3.html @@ -148,7 +148,7 @@ internally (<tt>APFloat</tt> has the capability of holding floating point constants of <em>A</em>rbitrary <em>P</em>recision). This code basically just creates and returns a <tt>ConstantFP</tt>. Note that in the LLVM IR that constants are all uniqued together and shared. For this reason, the API -uses "the foo::get(..)" idiom instead of "new foo(..)" or "foo::create(..)".</p> +uses "the foo::get(..)" idiom instead of "new foo(..)" or "foo::Create(..)".</p> <div class="doc_code"> <pre> |