Home | History | Annotate | Download | only in Inputs
      1 $foo = comdat any
      2 $bar = comdat any
      3 
      4 define linkonce_odr i32 @f1() comdat($foo) {
      5   ret i32 1
      6 }
      7 
      8 define void @f2() comdat($foo) {
      9   call i32 @g2()
     10   ret void
     11 }
     12 
     13 define linkonce_odr i32 @g1() comdat($bar) {
     14   ret i32 1
     15 }
     16 
     17 define linkonce_odr i32 @g2() comdat($bar) {
     18   ret i32 1
     19 }
     20