diff options
author | Dan Gohman <gohman@apple.com> | 2010-05-28 17:07:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-05-28 17:07:41 +0000 |
commit | d6a6f61fdb10b75c75905e3985df697742c26f4f (patch) | |
tree | 1d8db8f42eaf9087b15afe4c5e6fec6b6b34bca6 /llvm/docs/tutorial/OCamlLangImpl3.html | |
parent | 2085089c49267be1debe3880b251f801ae0cfc24 (diff) | |
download | bcm5719-llvm-d6a6f61fdb10b75c75905e3985df697742c26f4f.tar.gz bcm5719-llvm-d6a6f61fdb10b75c75905e3985df697742c26f4f.zip |
Fix whitespace to be more consistent with AsmPrinter's style.
llvm-svn: 104962
Diffstat (limited to 'llvm/docs/tutorial/OCamlLangImpl3.html')
-rw-r--r-- | llvm/docs/tutorial/OCamlLangImpl3.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/docs/tutorial/OCamlLangImpl3.html b/llvm/docs/tutorial/OCamlLangImpl3.html index febd7f528cb..d55fd0fd0cb 100644 --- a/llvm/docs/tutorial/OCamlLangImpl3.html +++ b/llvm/docs/tutorial/OCamlLangImpl3.html @@ -524,8 +524,8 @@ ready> <b>def bar(a) foo(a, 4.0) + bar(31337);</b> Read function definition: define double @bar(double %a) { entry: - %calltmp = call double @foo( double %a, double 4.000000e+00 ) - %calltmp1 = call double @bar( double 3.133700e+04 ) + %calltmp = call double @foo(double %a, double 4.000000e+00) + %calltmp1 = call double @bar(double 3.133700e+04) %addtmp = fadd double %calltmp, %calltmp1 ret double %addtmp } @@ -546,7 +546,7 @@ ready> <b>cos(1.234);</b> Read top-level expression: define double @""() { entry: - %calltmp = call double @cos( double 1.234000e+00 ) + %calltmp = call double @cos(double 1.234000e+00) ret double %calltmp } </pre> @@ -579,8 +579,8 @@ entry: define double @bar(double %a) { entry: - %calltmp = call double @foo( double %a, double 4.000000e+00 ) - %calltmp1 = call double @bar( double 3.133700e+04 ) + %calltmp = call double @foo(double %a, double 4.000000e+00) + %calltmp1 = call double @bar(double 3.133700e+04) %addtmp = fadd double %calltmp, %calltmp1 ret double %addtmp } @@ -589,7 +589,7 @@ declare double @cos(double) define double @""() { entry: - %calltmp = call double @cos( double 1.234000e+00 ) + %calltmp = call double @cos(double 1.234000e+00) ret double %calltmp } </pre> |