llvm-6502/test/Transforms/MergeFunc/fold-weak.ll
2009-06-12 15:56:56 +00:00

14 lines
286 B
LLVM

; RUN: llvm-as < %s | opt -mergefunc | llvm-dis > %t
; RUN: grep {define weak} %t | count 2
; RUN: grep {call} %t | count 2
define weak i32 @sum(i32 %x, i32 %y) {
%sum = add i32 %x, %y
ret i32 %sum
}
define weak i32 @add(i32 %x, i32 %y) {
%sum = add i32 %x, %y
ret i32 %sum
}