Fixed some bugs in register stack pass.
[llvm/zpu.git] / test / CodeGen / X86 / 2009-01-31-BigShift2.ll
blob9d240844afba1df6dae3276146f25b88858d70ae
1 ; RUN: llc < %s -march=x86 | grep {mov.*56}
2 ; PR3449
4 define void @test(<8 x double>* %P, i64* %Q) nounwind {
5         %A = load <8 x double>* %P              ; <<8 x double>> [#uses=1]
6         %B = bitcast <8 x double> %A to i512            ; <i512> [#uses=1]
7         %C = lshr i512 %B, 448          ; <i512> [#uses=1]
8         %D = trunc i512 %C to i64               ; <i64> [#uses=1]
9         volatile store i64 %D, i64* %Q
10         ret void