diff --git a/lib/Target/README.txt b/lib/Target/README.txt index 32a2e7ccbd5..d9091d0ca76 100644 --- a/lib/Target/README.txt +++ b/lib/Target/README.txt @@ -68,4 +68,7 @@ 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 + + //===---------------------------------------------------------------------===//