summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-08-17 17:13:42 +0000
committerChris Lattner <sabre@nondot.org>2010-08-17 17:13:42 +0000
commit63e4ccb3cd4110b59aca03ae3dec554006cdc506 (patch)
tree4f3356f8641d257c2e8642f2eab0d5d9568f957c /docs
parent1c034dcbbc86674cc146340a877495f71d9a2569 (diff)
downloadllvm-63e4ccb3cd4110b59aca03ae3dec554006cdc506.tar.gz
llvm-63e4ccb3cd4110b59aca03ae3dec554006cdc506.tar.bz2
llvm-63e4ccb3cd4110b59aca03ae3dec554006cdc506.tar.xz
add some &nbsp;'s to a pre to avoid newlines being eaten
and the formatting being thrown off. I admit to not knowing what is going on here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111249 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html21
1 files changed, 11 insertions, 10 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index ff707a45b6..2c38a6c55f 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -491,20 +491,21 @@
the "hello world" module:</p>
<pre class="doc_code">
-<i>; Declare the string constant as a global constant.</i>
-<a href="#identifiers">@.LC0</a> = <a href="#linkage_internal">internal</a> <a href="#globalvars">constant</a> <a href="#t_array">[13 x i8]</a> c"hello world\0A\00" <i>; [13 x i8]*</i>
+<i>; Declare the string constant as a global constant.</i>&nbsp;
+<a href="#identifiers">@.LC0</a> = <a href="#linkage_internal">internal</a> <a href="#globalvars">constant</a> <a href="#t_array">[13 x i8]</a> c"hello world\0A\00" <i>; [13 x i8]*</i>&nbsp;
-<i>; External declaration of the puts function</i>
-<a href="#functionstructure">declare</a> i32 @puts(i8*) <i>; i32 (i8*)* </i>
+<i>; External declaration of the puts function</i>&nbsp;
+<a href="#functionstructure">declare</a> i32 @puts(i8*) <i>; i32 (i8*)* </i>&nbsp;
<i>; Definition of main function</i>
-define i32 @main() { <i>; i32()* </i>
- <i>; Convert [13 x i8]* to i8 *...</i>
- %cast210 = <a href="#i_getelementptr">getelementptr</a> [13 x i8]* @.LC0, i64 0, i64 0 <i>; i8*</i>
+define i32 @main() { <i>; i32()* </i>&nbsp;
+ <i>; Convert [13 x i8]* to i8 *...</i>&nbsp;
+ %cast210 = <a href="#i_getelementptr">getelementptr</a> [13 x i8]* @.LC0, i64 0, i64 0 <i>; i8*</i>&nbsp;
- <i>; Call puts function to write out the string to stdout.</i>
- <a href="#i_call">call</a> i32 @puts(i8* %cast210) <i>; i32</i>
- <a href="#i_ret">ret</a> i32 0<br>}
+ <i>; Call puts function to write out the string to stdout.</i>&nbsp;
+ <a href="#i_call">call</a> i32 @puts(i8* %cast210) <i>; i32</i>&nbsp;
+ <a href="#i_ret">ret</a> i32 0&nbsp;
+}
<i>; Named metadata</i>
!1 = metadata !{i32 41}