1*9880d681SAndroid Build Coastguard Worker; RUN: opt < %s -inline -S | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker 3*9880d681SAndroid Build Coastguard Worker$c = comdat any 4*9880d681SAndroid Build Coastguard Worker; CHECK: $c = comdat any 5*9880d681SAndroid Build Coastguard Worker 6*9880d681SAndroid Build Coastguard Workerdefine linkonce_odr void @foo() comdat($c) { 7*9880d681SAndroid Build Coastguard Worker ret void 8*9880d681SAndroid Build Coastguard Worker} 9*9880d681SAndroid Build Coastguard Worker; CHECK: define linkonce_odr void @foo() comdat($c) 10*9880d681SAndroid Build Coastguard Worker 11*9880d681SAndroid Build Coastguard Workerdefine linkonce_odr void @bar() comdat($c) { 12*9880d681SAndroid Build Coastguard Worker ret void 13*9880d681SAndroid Build Coastguard Worker} 14*9880d681SAndroid Build Coastguard Worker; CHECK: define linkonce_odr void @bar() comdat($c) 15*9880d681SAndroid Build Coastguard Worker 16*9880d681SAndroid Build Coastguard Workerdefine void()* @zed() { 17*9880d681SAndroid Build Coastguard Worker ret void()* @foo 18*9880d681SAndroid Build Coastguard Worker} 19