1*9880d681SAndroid Build Coastguard Worker; RUN: llvm-as < %s | llvm-dis | grep "addrspace(33)" | count 7 2*9880d681SAndroid Build Coastguard Worker; RUN: llvm-as < %s | llvm-dis | grep "addrspace(42)" | count 2 3*9880d681SAndroid Build Coastguard Worker; RUN: llvm-as < %s | llvm-dis | grep "addrspace(66)" | count 2 4*9880d681SAndroid Build Coastguard Worker; RUN: llvm-as < %s | llvm-dis | grep "addrspace(11)" | count 6 5*9880d681SAndroid Build Coastguard Worker; RUN: llvm-as < %s | llvm-dis | grep "addrspace(22)" | count 5 6*9880d681SAndroid Build Coastguard Worker; RUN: verify-uselistorder %s 7*9880d681SAndroid Build Coastguard Worker 8*9880d681SAndroid Build Coastguard Worker %struct.mystruct = type { i32, i32 addrspace(33)*, i32, i32 addrspace(33)* } 9*9880d681SAndroid Build Coastguard Worker@input = weak addrspace(42) global %struct.mystruct zeroinitializer ; <%struct.mystruct addrspace(42)*> [#uses=1] 10*9880d681SAndroid Build Coastguard Worker@output = addrspace(66) global %struct.mystruct zeroinitializer ; <%struct.mystruct addrspace(66)*> [#uses=1] 11*9880d681SAndroid Build Coastguard Worker@y = external addrspace(33) global i32 addrspace(11)* addrspace(22)* ; <i32 addrspace(11)* addrspace(22)* addrspace(33)*> [#uses=1] 12*9880d681SAndroid Build Coastguard Worker 13*9880d681SAndroid Build Coastguard Workerdefine void @foo() { 14*9880d681SAndroid Build Coastguard Workerentry: 15*9880d681SAndroid Build Coastguard Worker %tmp1 = load i32 addrspace(33)*, i32 addrspace(33)* addrspace(42)* getelementptr (%struct.mystruct, %struct.mystruct addrspace(42)* @input, i32 0, i32 3), align 4 ; <i32 addrspace(33)*> [#uses=1] 16*9880d681SAndroid Build Coastguard Worker store i32 addrspace(33)* %tmp1, i32 addrspace(33)* addrspace(66)* getelementptr (%struct.mystruct, %struct.mystruct addrspace(66)* @output, i32 0, i32 1), align 4 17*9880d681SAndroid Build Coastguard Worker ret void 18*9880d681SAndroid Build Coastguard Worker} 19*9880d681SAndroid Build Coastguard Worker 20*9880d681SAndroid Build Coastguard Workerdefine i32 addrspace(11)* @bar(i32 addrspace(11)* addrspace(22)* addrspace(33)* %x) { 21*9880d681SAndroid Build Coastguard Workerentry: 22*9880d681SAndroid Build Coastguard Worker %tmp1 = load i32 addrspace(11)* addrspace(22)*, i32 addrspace(11)* addrspace(22)* addrspace(33)* @y, align 4 ; <i32 addrspace(11)* addrspace(22)*> [#uses=2] 23*9880d681SAndroid Build Coastguard Worker store i32 addrspace(11)* addrspace(22)* %tmp1, i32 addrspace(11)* addrspace(22)* addrspace(33)* %x, align 4 24*9880d681SAndroid Build Coastguard Worker %tmp5 = load i32 addrspace(11)*, i32 addrspace(11)* addrspace(22)* %tmp1, align 4 ; <i32 addrspace(11)*> [#uses=1] 25*9880d681SAndroid Build Coastguard Worker ret i32 addrspace(11)* %tmp5 26*9880d681SAndroid Build Coastguard Worker} 27