2009-09-11 18:01:28 +00:00
|
|
|
; RUN: opt < %s -instcombine -globaldce -S | \
|
2007-04-14 20:13:02 +00:00
|
|
|
; RUN: not grep Array
|
2009-11-03 15:29:06 +00:00
|
|
|
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"
|
2005-01-31 04:49:22 +00:00
|
|
|
|
|
|
|
; Pulling the cast out of the load allows us to eliminate the load, and then
|
|
|
|
; the whole array.
|
|
|
|
|
2008-03-09 08:16:40 +00:00
|
|
|
%op = type { float }
|
|
|
|
%unop = type { i32 }
|
|
|
|
@Array = internal constant [1 x %op* (%op*)*] [ %op* (%op*)* @foo ] ; <[1 x %op* (%op*)*]*> [#uses=1]
|
2005-01-31 04:49:22 +00:00
|
|
|
|
2008-03-09 08:16:40 +00:00
|
|
|
define %op* @foo(%op* %X) {
|
|
|
|
ret %op* %X
|
2005-01-31 04:49:22 +00:00
|
|
|
}
|
|
|
|
|
2008-03-09 08:16:40 +00:00
|
|
|
define %unop* @caller(%op* %O) {
|
|
|
|
%tmp = load %unop* (%op*)** bitcast ([1 x %op* (%op*)*]* @Array to %unop* (%op*)**); <%unop* (%op*)*> [#uses=1]
|
|
|
|
%tmp.2 = call %unop* %tmp( %op* %O ) ; <%unop*> [#uses=1]
|
|
|
|
ret %unop* %tmp.2
|
2005-01-31 04:49:22 +00:00
|
|
|
}
|
|
|
|
|