mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
add a note
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25942 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7632e2beb4
commit
f92bafa2ca
@ -64,4 +64,8 @@ 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)".
|
||||
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
Loading…
x
Reference in New Issue
Block a user