llvm-6502/test/LTO/linkonce_odr_func.ll
Rafael Espindola 6af049837a XFAIL this for now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193802 91177308-0d34-0410-b5e6-96231b3b80d8
2013-10-31 21:22:43 +00:00

47 lines
960 B
LLVM

; RUN: llvm-as < %s >%t1
; RUN: llvm-lto -o %t2 -dso-symbol=foo1 -dso-symbol=foo2 -dso-symbol=foo3 \
; RUN: -dso-symbol=foo4 %t1 -disable-opt
; RUN: llvm-nm %t2 | FileCheck %s
; FIXME: it looks like -march option of llvm-lto is not working and llvm-nm is
; not printing the correct values with Mach-O.
; XFAIL: darwin
; CHECK: t foo1
define linkonce_odr void @foo1() noinline {
ret void
}
; CHECK: W foo2
define linkonce_odr void @foo2() noinline {
ret void
}
; CHECK: t foo3
define linkonce_odr void @foo3() noinline {
ret void
}
; CHECK: W foo4
define linkonce_odr void @foo4() noinline {
ret void
}
declare void @f(void()*)
declare void @p()
define void @bar() {
bb0:
call void @foo1()
call void @f(void()* @foo2)
invoke void @foo3() to label %bb1 unwind label %clean
bb1:
invoke void @f(void()* @foo4) to label %bb2 unwind label %clean
bb2:
ret void
clean:
landingpad {i32, i32} personality void()* @p cleanup
ret void
}