summaryrefslogtreecommitdiff
path: root/test/Transforms/MergeFunc/fold-weak.ll
blob: 4df6e39c1256585147f531286af43ae7bcc8bdc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: opt < %s -mergefunc -S > %t
; RUN: grep "define weak" %t | count 2
; RUN: grep "call" %t | count 2
; XFAIL: *

; This test is off for a bit as we change this particular sort of folding to
; only apply on ELF systems and not Mach-O systems.

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
}