Skip to content

Commit

Permalink
Fix whitespace to be more consistent with AsmPrinter's style.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104962 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Dan Gohman committed May 28, 2010
1 parent 90a2322 commit 3dfb3cf
Show file tree
Hide file tree
Showing 12 changed files with 139 additions and 139 deletions.
4 changes: 2 additions & 2 deletions docs/ExceptionHandling.html
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@
<div class="doc_text">

<pre>
i8* %<a href="#llvm_eh_exception">llvm.eh.exception</a>( )
i8* %<a href="#llvm_eh_exception">llvm.eh.exception</a>()
</pre>

<p>This intrinsic returns a pointer to the exception structure.</p>
Expand Down Expand Up @@ -518,7 +518,7 @@
<div class="doc_text">

<pre>
i8* %<a href="#llvm_eh_sjlj_lsda">llvm.eh.sjlj.lsda</a>( )
i8* %<a href="#llvm_eh_sjlj_lsda">llvm.eh.sjlj.lsda</a>()
</pre>

<p>Used for SJLJ based exception handling, the <a href="#llvm_eh_sjlj_lsda">
Expand Down
2 changes: 1 addition & 1 deletion docs/FAQ.html
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@
ret void
}
define void @bar() {
call void @foo( )
call void @foo()
ret void
}
</pre>
Expand Down
204 changes: 102 additions & 102 deletions docs/LangRef.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/SourceLevelDebugging.html
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@

<div class="doc_text">
<pre>
void %<a href="#format_common_declare">llvm.dbg.declare</a>( { } *, metadata )
void %<a href="#format_common_declare">llvm.dbg.declare</a>({ }*, metadata)
</pre>

<p>This intrinsic provides information about a local element (ex. variable.) The
Expand All @@ -800,7 +800,7 @@

<div class="doc_text">
<pre>
void %<a href="#format_common_value">llvm.dbg.value</a>( metadata, i64, metadata )
void %<a href="#format_common_value">llvm.dbg.value</a>(metadata, i64, metadata)
</pre>

<p>This intrinsic provides information when a user source variable is set to a
Expand Down
12 changes: 6 additions & 6 deletions docs/tutorial/LangImpl3.html
Original file line number Diff line number Diff line change
Expand Up @@ -574,8 +574,8 @@
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
}
Expand All @@ -596,7 +596,7 @@
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>
Expand Down Expand Up @@ -629,8 +629,8 @@

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
}
Expand All @@ -639,7 +639,7 @@

define double @""() {
entry:
%calltmp = call double @cos( double 1.234000e+00 )
%calltmp = call double @cos(double 1.234000e+00)
ret double %calltmp
}
</pre>
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorial/LangImpl4.html
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@
ready&gt; <b>testfunc(4, 10);</b>
define double @""() {
entry:
%calltmp = call double @testfunc( double 4.000000e+00, double 1.000000e+01 )
%calltmp = call double @testfunc(double 4.000000e+00, double 1.000000e+01)
ret double %calltmp
}

Expand Down Expand Up @@ -410,9 +410,9 @@
Read function definition:
define double @foo(double %x) {
entry:
%calltmp = call double @sin( double %x )
%calltmp = call double @sin(double %x)
%multmp = fmul double %calltmp, %calltmp
%calltmp2 = call double @cos( double %x )
%calltmp2 = call double @cos(double %x)
%multmp4 = fmul double %calltmp2, %calltmp2
%addtmp = fadd double %multmp, %multmp4
ret double %addtmp
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/LangImpl5.html
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@
loop: ; preds = %loop, %entry
%i = phi double [ 1.000000e+00, %entry ], [ %nextvar, %loop ]
; body
%calltmp = call double @putchard( double 4.200000e+01 )
%calltmp = call double @putchard(double 4.200000e+01)
; increment
%nextvar = fadd double %i, 1.000000e+00

Expand Down
12 changes: 6 additions & 6 deletions docs/tutorial/LangImpl7.html
Original file line number Diff line number Diff line change
Expand Up @@ -558,10 +558,10 @@
else: ; preds = %entry
<b>%x3 = load double* %x1</b>
%subtmp = fsub double %x3, 1.000000e+00
%calltmp = call double @fib( double %subtmp )
%calltmp = call double @fib(double %subtmp)
<b>%x4 = load double* %x1</b>
%subtmp5 = fsub double %x4, 2.000000e+00
%calltmp6 = call double @fib( double %subtmp5 )
%calltmp6 = call double @fib(double %subtmp5)
%addtmp = fadd double %calltmp, %calltmp6
br label %ifcont

Expand Down Expand Up @@ -596,9 +596,9 @@

else:
%subtmp = fsub double <b>%x</b>, 1.000000e+00
%calltmp = call double @fib( double %subtmp )
%calltmp = call double @fib(double %subtmp)
%subtmp5 = fsub double <b>%x</b>, 2.000000e+00
%calltmp6 = call double @fib( double %subtmp5 )
%calltmp6 = call double @fib(double %subtmp5)
%addtmp = fadd double %calltmp, %calltmp6
br label %ifcont

Expand Down Expand Up @@ -626,9 +626,9 @@

else:
%subtmp = fsub double %x, 1.000000e+00
%calltmp = call double @fib( double %subtmp )
%calltmp = call double @fib(double %subtmp)
%subtmp5 = fsub double %x, 2.000000e+00
%calltmp6 = call double @fib( double %subtmp5 )
%calltmp6 = call double @fib(double %subtmp5)
%addtmp = fadd double %calltmp, %calltmp6
ret double %addtmp

Expand Down
12 changes: 6 additions & 6 deletions docs/tutorial/OCamlLangImpl3.html
Original file line number Diff line number Diff line change
Expand Up @@ -524,8 +524,8 @@
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
}
Expand All @@ -546,7 +546,7 @@
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>
Expand Down Expand Up @@ -579,8 +579,8 @@

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
}
Expand All @@ -589,7 +589,7 @@

define double @""() {
entry:
%calltmp = call double @cos( double 1.234000e+00 )
%calltmp = call double @cos(double 1.234000e+00)
ret double %calltmp
}
</pre>
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorial/OCamlLangImpl4.html
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@
ready&gt; <b>testfunc(4, 10);</b>
define double @""() {
entry:
%calltmp = call double @testfunc( double 4.000000e+00, double 1.000000e+01 )
%calltmp = call double @testfunc(double 4.000000e+00, double 1.000000e+01)
ret double %calltmp
}

Expand Down Expand Up @@ -426,9 +426,9 @@
Read function definition:
define double @foo(double %x) {
entry:
%calltmp = call double @sin( double %x )
%calltmp = call double @sin(double %x)
%multmp = fmul double %calltmp, %calltmp
%calltmp2 = call double @cos( double %x )
%calltmp2 = call double @cos(double %x)
%multmp4 = fmul double %calltmp2, %calltmp2
%addtmp = fadd double %multmp, %multmp4
ret double %addtmp
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/OCamlLangImpl5.html
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@
loop: ; preds = %loop, %entry
%i = phi double [ 1.000000e+00, %entry ], [ %nextvar, %loop ]
; body
%calltmp = call double @putchard( double 4.200000e+01 )
%calltmp = call double @putchard(double 4.200000e+01)
; increment
%nextvar = fadd double %i, 1.000000e+00

Expand Down
12 changes: 6 additions & 6 deletions docs/tutorial/OCamlLangImpl7.html
Original file line number Diff line number Diff line change
Expand Up @@ -582,10 +582,10 @@
else: ; preds = %entry
<b>%x3 = load double* %x1</b>
%subtmp = fsub double %x3, 1.000000e+00
%calltmp = call double @fib( double %subtmp )
%calltmp = call double @fib(double %subtmp)
<b>%x4 = load double* %x1</b>
%subtmp5 = fsub double %x4, 2.000000e+00
%calltmp6 = call double @fib( double %subtmp5 )
%calltmp6 = call double @fib(double %subtmp5)
%addtmp = fadd double %calltmp, %calltmp6
br label %ifcont

Expand Down Expand Up @@ -620,9 +620,9 @@

else:
%subtmp = fsub double <b>%x</b>, 1.000000e+00
%calltmp = call double @fib( double %subtmp )
%calltmp = call double @fib(double %subtmp)
%subtmp5 = fsub double <b>%x</b>, 2.000000e+00
%calltmp6 = call double @fib( double %subtmp5 )
%calltmp6 = call double @fib(double %subtmp5)
%addtmp = fadd double %calltmp, %calltmp6
br label %ifcont

Expand Down Expand Up @@ -650,9 +650,9 @@

else:
%subtmp = fsub double %x, 1.000000e+00
%calltmp = call double @fib( double %subtmp )
%calltmp = call double @fib(double %subtmp)
%subtmp5 = fsub double %x, 2.000000e+00
%calltmp6 = call double @fib( double %subtmp5 )
%calltmp6 = call double @fib(double %subtmp5)
%addtmp = fadd double %calltmp, %calltmp6
ret double %addtmp

Expand Down

0 comments on commit 3dfb3cf

Please sign in to comment.