[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / ThinLTO / X86 / personality-local.ll
blobaf88d2922a4fb1e9cf4b7cc6aa22a10eb215662b
1 ; RUN: opt -module-summary %s -o %t1.bc
2 ; RUN: opt -module-summary %S/Inputs/personality-local.ll -o %t2.bc
4 ; RUN: llvm-lto2 run -o %t.o %t1.bc %t2.bc -save-temps \
5 ; RUN:   -r %t2.bc,foo,p \
6 ; RUN:   -r %t1.bc,foo,l \
7 ; RUN:   -r %t1.bc,bar,p \
8 ; RUN:   -r %t1.bc,main,xp
9 ; RUN: llvm-readobj --symbols %t.o.2 | FileCheck %s
11 ; CHECK:      Symbol {
12 ; CHECK:        Name: foo
13 ; CHECK-NEXT:   Value: 0x0
14 ; CHECK-NEXT:   Size: 1
15 ; CHECK-NEXT:   Binding: Global
16 ; CHECK-NEXT:   Type: Function
17 ; CHECK-NEXT:   Other: 0
18 ; CHECK-NEXT:   Section: .text
19 ; CHECK-NEXT: }
21 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
22 target triple = "x86_64-pc-linux-gnu"
24 declare void @foo()
26 define void @bar() personality i32 (i32, i32, i64, i8*, i8*)* @personality_routine {
27  ret void
30 define internal i32 @personality_routine(i32, i32, i64, i8*, i8*) {
31   call void @foo()
32   ret i32 0
35 define i32 @main() {
36   call void @bar()
37   ret i32 0