diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-11 20:17:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-11 20:17:08 +0000 |
commit | 003f633036a4f5864694850cdbf79238dd79dd1c (patch) | |
tree | 03e9d1590e94f46abc316279361d71fc6c19d745 /llvm/lib | |
parent | d5811b965df21fff17b13117ec9a0fc3c9136e9f (diff) | |
download | bcm5719-llvm-003f633036a4f5864694850cdbf79238dd79dd1c.tar.gz bcm5719-llvm-003f633036a4f5864694850cdbf79238dd79dd1c.zip |
add a note
llvm-svn: 26708
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/README.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Target/README.txt b/llvm/lib/Target/README.txt index d92f9c99062..f77fbc2eea7 100644 --- a/llvm/lib/Target/README.txt +++ b/llvm/lib/Target/README.txt @@ -117,6 +117,10 @@ it needs to turn the shifts into multiplies to get it. //===---------------------------------------------------------------------===// +Reassociate should turn: X*X*X*X -> t=(X*X) (t*t) to eliminate a multiply. + +//===---------------------------------------------------------------------===// + These two functions should generate the same code on big-endian systems: int g(int *j,int *l) { return memcmp(j,l,4); } |