diff options
| author | Micah Villmow <villmow@gmail.com> | 2012-10-08 16:39:34 +0000 |
|---|---|---|
| committer | Micah Villmow <villmow@gmail.com> | 2012-10-08 16:39:34 +0000 |
| commit | 9cfc13d46c60643867e1b72f6539dd8400be52df (patch) | |
| tree | b51dbc67f55236808bfc55f4137f973eef5f8687 /llvm/docs/tutorial/OCamlLangImpl7.html | |
| parent | cdfe20b97f55f4f493ebd6f15932780ae0789fe4 (diff) | |
| download | bcm5719-llvm-9cfc13d46c60643867e1b72f6539dd8400be52df.tar.gz bcm5719-llvm-9cfc13d46c60643867e1b72f6539dd8400be52df.zip | |
Move TargetData to DataLayout.
llvm-svn: 165403
Diffstat (limited to 'llvm/docs/tutorial/OCamlLangImpl7.html')
| -rw-r--r-- | llvm/docs/tutorial/OCamlLangImpl7.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/tutorial/OCamlLangImpl7.html b/llvm/docs/tutorial/OCamlLangImpl7.html index d106ad0701c..fd66b10c1a1 100644 --- a/llvm/docs/tutorial/OCamlLangImpl7.html +++ b/llvm/docs/tutorial/OCamlLangImpl7.html @@ -545,7 +545,7 @@ let main () = (* Set up the optimizer pipeline. Start with registering info about how the * target lays out data structures. *) - TargetData.add (ExecutionEngine.target_data the_execution_engine) the_fpm; + DataLayout.add (ExecutionEngine.target_data the_execution_engine) the_fpm; <b>(* Promote allocas to registers. *) add_memory_to_register_promotion the_fpm;</b> @@ -1834,7 +1834,7 @@ let main () = (* Set up the optimizer pipeline. Start with registering info about how the * target lays out data structures. *) - TargetData.add (ExecutionEngine.target_data the_execution_engine) the_fpm; + DataLayout.add (ExecutionEngine.target_data the_execution_engine) the_fpm; (* Promote allocas to registers. *) add_memory_to_register_promotion the_fpm; |

