Merge branch 'master' into msp430
[llvm/msp430.git] / test / Transforms / ScalarRepl / not-a-vector.ll
blobe2111e7b31c2d90a49184e5ec6b5df053644cfca
1 ; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | not grep alloca
2 ; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | not grep {7 x double}
3 ; RUN: llvm-as < %s | opt -scalarrepl -instcombine | llvm-dis | grep {ret double %B}
5 define double @test(double %A, double %B) {
6         %ARR = alloca [7 x i64]
7         %C = bitcast [7 x i64]* %ARR to double*
8         store double %A, double* %C
10         %D = getelementptr [7 x i64]* %ARR, i32 0, i32 4
11         %E = bitcast i64* %D to double*
12         store double %B, double* %E
14         %F = getelementptr double* %C, i32 4
15         %G = load double* %F
16         ret double %G