projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f3b0ee
)
some stuff is done
author
Chris Lattner
<sabre@nondot.org>
Sun, 5 Feb 2006 07:54:37 +0000
(07:54 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Sun, 5 Feb 2006 07:54:37 +0000
(07:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26004
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/README.txt
patch
|
blob
|
history
diff --git
a/lib/Target/README.txt
b/lib/Target/README.txt
index d9091d0ca7698cb4e7ef3609d3898d2241d8cc6b..4b6e0e92f1d0f2b80a9c7bf8007d9301779d3d21 100644
(file)
--- a/
lib/Target/README.txt
+++ b/
lib/Target/README.txt
@@
-65,10
+65,6
@@
Number 1 is the preferred solution.
//===---------------------------------------------------------------------===//
For dag combiner and instcombine:
-Fold: "A / (B << N)" where B is a power of 2, to "A >> (N + log2(B))".
-Fold: "A % (B << N)" where B is a power of 2, to "A & ((B << N) - 1)".
-
int t(int X, int Y) { return 1 << (X+4); } --> 16 << X
-
//===---------------------------------------------------------------------===//