aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-02-28 06:36:04 +0000
committerChris Lattner <sabre@nondot.org>2006-02-28 06:36:04 +0000
commitf4c8575c271c70edffd48a5c23276f18a0b5900d (patch)
tree9dcb2429efa2824f1f2c1394ff654dc2c4b220ff
parent15045b6973bfe7a5adda8c0fb53bb1b0cdc06b8d (diff)
remove implemented item
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26418 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/PowerPC/README.txt17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/Target/PowerPC/README.txt b/lib/Target/PowerPC/README.txt
index 69c8150f83..0a119155fe 100644
--- a/lib/Target/PowerPC/README.txt
+++ b/lib/Target/PowerPC/README.txt
@@ -11,23 +11,6 @@ void foo(float a, int *b) { *b = a; }
===-------------------------------------------------------------------------===
-unsigned short foo(float a) { return a; }
-should be:
-_foo:
- fctiwz f0,f1
- stfd f0,-8(r1)
- lhz r3,-2(r1)
- blr
-not:
-_foo:
- fctiwz f0, f1
- stfd f0, -8(r1)
- lwz r2, -4(r1)
- rlwinm r3, r2, 0, 16, 31
- blr
-
-===-------------------------------------------------------------------------===
-
Support 'update' load/store instructions. These are cracked on the G5, but are
still a codesize win.