1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 04:52:54 +02:00
llvm-mirror/test/LTO/X86/linkonce_odr_func.ll
David Majnemer c8b1f095a3 Move the personality function from LandingPadInst to Function
The personality routine currently lives in the LandingPadInst.

This isn't desirable because:
- All LandingPadInsts in the same function must have the same
  personality routine.  This means that each LandingPadInst beyond the
  first has an operand which produces no additional information.

- There is ongoing work to introduce EH IR constructs other than
  LandingPadInst.  Moving the personality routine off of any one
  particular Instruction and onto the parent function seems a lot better
  than have N different places a personality function can sneak onto an
  exceptional function.

Differential Revision: http://reviews.llvm.org/D10429

llvm-svn: 239940
2015-06-17 20:52:32 +00:00

62 lines
1.2 KiB
LLVM

; RUN: llvm-as < %s >%t1
; RUN: llvm-lto -o %t2 -dso-symbol=foo1 -dso-symbol=foo2 -dso-symbol=foo3 \
; RUN: -dso-symbol=foo4 -dso-symbol=v1 -dso-symbol=v2 %t1 -O0
; RUN: llvm-nm %t2 | FileCheck %s
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
; 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
}
; CHECK: r v1
@v1 = linkonce_odr constant i32 32
define i32 @useV1() {
%x = load i32, i32* @v1
ret i32 %x
}
; CHECK: V v2
@v2 = linkonce_odr global i32 32
define i32 @useV2() {
%x = load i32, i32* @v2
ret i32 %x
}
declare void @f(void()*)
declare void @p()
define void @bar() personality void()* @p {
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} cleanup
ret void
}