From 2a08c532385775acafba11bc990ce76a609e3118 Mon Sep 17 00:00:00 2001
From: Dan Gohman
Date: Sun, 4 Jan 2009 23:44:43 +0000
Subject: [PATCH] Tidy whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61653 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/LangRef.html | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 518070c6870..f064114f666 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -441,9 +441,9 @@ symbol table entries. Here is an example of the "hello world" module:
; Definition of main function
define i32 @main() { ; i32()*
- ; Convert [13x i8 ]* to i8 *...
+ ; Convert [13 x i8]* to i8 *...
%cast210 = getelementptr [13 x i8 ]* @.LC0, i64 0, i64 0 ; i8 *
+ href="#i_getelementptr">getelementptr [13 x i8]* @.LC0, i64 0, i64 0 ; i8 *
; Call puts function to write out the string to stdout...
Examples:
- [4x i32]* |
+ [4 x i32]* |
A pointer to array of four i32 values. |
@@ -2071,15 +2071,15 @@ branches or with a lookup table.
; Emulate a conditional br instruction
%Val = zext i1 %value to i32
- switch i32 %Val, label %truedest [i32 0, label %falsedest ]
+ switch i32 %Val, label %truedest [ i32 0, label %falsedest ]
; Emulate an unconditional br instruction
switch i32 0, label %dest [ ]
; Implement a jump table:
- switch i32 %val, label %otherwise [ i32 0, label %onzero
- i32 1, label %onone
- i32 2, label %ontwo ]
+ switch i32 %val, label %otherwise [ i32 0, label %onzero
+ i32 1, label %onone
+ i32 2, label %ontwo ]
@@ -3187,7 +3187,7 @@ result is null if there is insufficient memory available.
Example:
- %array = malloc [4 x i8 ] ; yields {[%4 x i8]*}:array
+ %array = malloc [4 x i8] ; yields {[%4 x i8]*}:array
%size = add i32 2, 2 ; yields {i32}:size = i32 4
%array1 = malloc i8, i32 4 ; yields {i8*}:array1
--
2.34.1