1*9880d681SAndroid Build Coastguard Worker; RUN: opt < %s -globaldce -S | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker 3*9880d681SAndroid Build Coastguard Worker$c1 = comdat any 4*9880d681SAndroid Build Coastguard Worker; CHECK: $c1 = comdat any 5*9880d681SAndroid Build Coastguard Worker 6*9880d681SAndroid Build Coastguard Worker@a1 = linkonce_odr alias void (), void ()* @f1 7*9880d681SAndroid Build Coastguard Worker; CHECK: @a1 = linkonce_odr alias void (), void ()* @f1 8*9880d681SAndroid Build Coastguard Worker 9*9880d681SAndroid Build Coastguard Workerdefine linkonce_odr void @f1() comdat($c1) { 10*9880d681SAndroid Build Coastguard Worker ret void 11*9880d681SAndroid Build Coastguard Worker} 12*9880d681SAndroid Build Coastguard Worker; CHECK: define linkonce_odr void @f1() comdat($c1) 13*9880d681SAndroid Build Coastguard Worker 14*9880d681SAndroid Build Coastguard Workerdefine void @g() { 15*9880d681SAndroid Build Coastguard Worker call void @f1() 16*9880d681SAndroid Build Coastguard Worker ret void 17*9880d681SAndroid Build Coastguard Worker} 18