Implement a pretty general logical shift propagation
[oota-llvm.git] / test / Transforms / InstCombine / 2010-08-19-StoreNarrowing.ll
1 ; RUN: opt -S -instcombine %s | not grep and
2 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
3 target triple = "x86_64-apple-darwin10.0.0"
4
5 %class.A = type { i8, [3 x i8] }
6
7 define void @_ZN1AC2Ev(%class.A* %this) nounwind ssp align 2 {
8 entry:
9   %0 = bitcast %class.A* %this to i32*            ; <i32*> [#uses=5]
10   %1 = load i32* %0, align 4                      ; <i32> [#uses=1]
11   %2 = and i32 %1, -8                             ; <i32> [#uses=2]
12   store i32 %2, i32* %0, align 4
13   %3 = and i32 %2, -57                            ; <i32> [#uses=1]
14   %4 = or i32 %3, 8                               ; <i32> [#uses=2]
15   store i32 %4, i32* %0, align 4
16   %5 = and i32 %4, -65                            ; <i32> [#uses=2]
17   store i32 %5, i32* %0, align 4
18   %6 = and i32 %5, -129                           ; <i32> [#uses=1]
19   store i32 %6, i32* %0, align 4
20   ret void
21 }