blob: e1549a0fe54105f7560ff32f35ab383e2076212b [file] [log] [blame]
Dan Gohman18800922009-09-11 18:01:28 +00001; RUN: opt < %s -instcombine -disable-output
Andrew Lenharth8cf11aa2007-11-08 17:39:28 +00002; PR1780
3
4target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32"
5target triple = "i686-pc-linux-gnu"
6
7%opaque_t = type opaque
8
Andrew Lenharth19ca5c72007-11-08 18:45:15 +00009%op_ts = type {opaque, i32}
10
Andrew Lenharth8cf11aa2007-11-08 17:39:28 +000011@g = external global %opaque_t
Andrew Lenharth19ca5c72007-11-08 18:45:15 +000012@h = external global %op_ts
Andrew Lenharth8cf11aa2007-11-08 17:39:28 +000013
14define i32 @foo() {
15entry:
16 %x = load i8* bitcast (%opaque_t* @g to i8*)
Andrew Lenharth19ca5c72007-11-08 18:45:15 +000017 %y = load i32* bitcast (%op_ts* @h to i32*)
Andrew Lenharth8cf11aa2007-11-08 17:39:28 +000018 %z = zext i8 %x to i32
19 %r = add i32 %y, %z
20 ret i32 %r
21}
22