1 ; RUN: opt -globalopt %s -S | FileCheck %s 2 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64" 3 target triple = "x86_64-apple-darwin10.0.0" 4 5 %0 = type { i32, void ()* } 6 %struct.foo = type { i32* } 7 8 @G = global i32 0, align 4 9 @H = global i32 0, align 4 10 @X = global %struct.foo zeroinitializer, align 8 11 @llvm.global_ctors = appending global [1 x %0] [%0 { i32 65535, void ()* @init }] 12 13 ; PR8710 - GlobalOpt shouldn't change the global's initializer to have this 14 ; arbitrary constant expression, the code generator can't handle it. 15 define internal void @init() { 16 entry: 17 %tmp = getelementptr inbounds %struct.foo* @X, i32 0, i32 0 18 store i32* inttoptr (i64 sdiv (i64 ptrtoint (i32* @G to i64), i64 ptrtoint (i32* @H to i64)) to i32*), i32** %tmp, align 8 19 ret void 20 } 21 22 ; CHECK: @init 23 ; CHECK: store i32* 24