blob: e12473125c785966f3bf775b4dd7dc8c572355fb [file] [log] [blame]
Dan Gohman3c7d3082009-09-11 18:01:28 +00001; RUN: opt < %s -mergefunc -S > %t
Nick Lewyckyf4dcd8a2009-06-12 15:56:56 +00002; RUN: grep {define weak} %t | count 2
3; RUN: grep {call} %t | count 2
4
5define weak i32 @sum(i32 %x, i32 %y) {
6 %sum = add i32 %x, %y
7 ret i32 %sum
8}
9
10define weak i32 @add(i32 %x, i32 %y) {
11 %sum = add i32 %x, %y
12 ret i32 %sum
13}