Dan Gohman | 3c7d308 | 2009-09-11 18:01:28 +0000 | [diff] [blame] | 1 | ; RUN: opt < %s -mergefunc -S > %t |
Nick Lewycky | f4dcd8a | 2009-06-12 15:56:56 +0000 | [diff] [blame] | 2 | ; RUN: grep {define weak} %t | count 2 |
3 | ; RUN: grep {call} %t | count 2 | ||||
4 | |||||
5 | define weak i32 @sum(i32 %x, i32 %y) { | ||||
6 | %sum = add i32 %x, %y | ||||
7 | ret i32 %sum | ||||
8 | } | ||||
9 | |||||
10 | define weak i32 @add(i32 %x, i32 %y) { | ||||
11 | %sum = add i32 %x, %y | ||||
12 | ret i32 %sum | ||||
13 | } |