Add missing newlines at EOF (for clang++).
[oota-llvm.git] / test / Transforms / InstCombine / cast-load-gep.ll
1 ; RUN: opt < %s -instcombine -globaldce -S | \
2 ; RUN:   not grep Array
3 target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
4
5 ; Pulling the cast out of the load allows us to eliminate the load, and then 
6 ; the whole array.
7
8         %op = type { float }
9         %unop = type { i32 }
10 @Array = internal constant [1 x %op* (%op*)*] [ %op* (%op*)* @foo ]             ; <[1 x %op* (%op*)*]*> [#uses=1]
11
12 define %op* @foo(%op* %X) {
13         ret %op* %X
14 }
15
16 define %unop* @caller(%op* %O) {
17         %tmp = load %unop* (%op*)** bitcast ([1 x %op* (%op*)*]* @Array to %unop* (%op*)**); <%unop* (%op*)*> [#uses=1]
18         %tmp.2 = call %unop* %tmp( %op* %O )            ; <%unop*> [#uses=1]
19         ret %unop* %tmp.2
20 }
21