summaryrefslogtreecommitdiff
path: root/lib/CodeGen/README.txt
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-08-22 00:04:26 +0000
committerBill Wendling <isanbard@gmail.com>2008-08-22 00:04:26 +0000
commita6211d9e83dfce3f8e3109af0d4b9a8e6647eedf (patch)
tree575d65b170dce0ea7dd5fa52a62614d14de365fa /lib/CodeGen/README.txt
parent403483c200964d4688bf34f1ab5a814e282b2554 (diff)
downloadllvm-a6211d9e83dfce3f8e3109af0d4b9a8e6647eedf.tar.gz
llvm-a6211d9e83dfce3f8e3109af0d4b9a8e6647eedf.tar.bz2
llvm-a6211d9e83dfce3f8e3109af0d4b9a8e6647eedf.tar.xz
Remove tabs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55154 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/README.txt')
-rw-r--r--lib/CodeGen/README.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/CodeGen/README.txt b/lib/CodeGen/README.txt
index d5ddd21796..64374ce137 100644
--- a/lib/CodeGen/README.txt
+++ b/lib/CodeGen/README.txt
@@ -87,14 +87,14 @@ scheduled after any node that reads %reg1039.
Use local info (i.e. register scavenger) to assign it a free register to allow
reuse:
- ldr r3, [sp, #+4]
- add r3, r3, #3
- ldr r2, [sp, #+8]
- add r2, r2, #2
- ldr r1, [sp, #+4] <==
- add r1, r1, #1
- ldr r0, [sp, #+4]
- add r0, r0, #2
+ ldr r3, [sp, #+4]
+ add r3, r3, #3
+ ldr r2, [sp, #+8]
+ add r2, r2, #2
+ ldr r1, [sp, #+4] <==
+ add r1, r1, #1
+ ldr r0, [sp, #+4]
+ add r0, r0, #2
//===---------------------------------------------------------------------===//