Merge branch 'master' into msp430
[llvm/msp430.git] / test / Transforms / SCCP / apint-bigint2.ll
blobe95e9d0abb13e23264d83e1df9e1a90876b335f1
1 ; RUN:  llvm-as < %s | opt -sccp | llvm-dis | not grep load
3 @Y = constant [6 x i101] [ i101 12, i101 123456789000000, i101 -12,
4                            i101 -123456789000000, i101 0,i101 9123456789000000]
6 define i101 @array()
8 Head:
9    %A = getelementptr [6 x i101]* @Y, i32 0, i32 1
10    %B = load i101* %A
11    %D = and i101 %B, 1
12    %DD = or i101 %D, 1
13    %E = trunc i101 %DD to i32
14    %F = getelementptr [6 x i101]* @Y, i32 0, i32 %E
15    %G = load i101* %F
17    ret i101 %G