Added the ability to xfail based on llvmgcc version
[llvm-complete.git] / test / Transforms / InstCombine / cast-load-gep.ll
blob9c997b887fd366ea85b9ccbe682f328385300a27
1 ; RUN: llvm-as < %s | opt -instcombine -globaldce | llvm-dis | not grep Array
3 ; Pulling the cast out of the load allows us to eliminate the load, and then 
4 ; the whole array.
6 %unop = type {int }
7 %op = type {float}
9 %Array = internal constant [1 x %op* (%op*)*] [ %op* (%op*)* %foo ]
11 implementation
13 %op* %foo(%op* %X) {
14   ret %op* %X
17 %unop* %caller(%op* %O) {
18    %tmp = load %unop* (%op*)** cast ([1 x %op* (%op*)*]* %Array to %unop* (%op*)**)
19    %tmp.2 = call %unop* (%op*)* %tmp(%op* %O)
20    ret %unop* %tmp.2