Fix the test case for the change in parameter attribute syntax. The @ is
[oota-llvm.git] / test / Transforms / LevelRaise / 2003-11-28-IllegalTypeConversion.ll
1 ; The program should not just cast 2143289344 to float and store it!
2 ;
3 ; RUN: llvm-upgrade < %s | llvm-as | opt -raise | llvm-dis | not grep 41DFF
4
5 void %test() {
6        %mem_tmp = alloca float
7        %tmp.0 = cast float* %mem_tmp to uint*
8        store uint 2143289344, uint* %tmp.0
9        ret void
10 }