diff --git a/lib/Target/PowerPC/README.txt b/lib/Target/PowerPC/README.txt index 69c8150f830..0a119155fef 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.