[yaml2obj] - Allow placing local symbols after globals.
[llvm-complete.git] / test / ThinLTO / X86 / diagnostic-handler-remarks.ll
blobf0ff9542ee1b3ceb4fdb7f362ad2f17a92163168
1 ; RUN: opt -module-summary %s -o %t1.bc
2 ; RUN: opt -module-summary %p/Inputs/diagnostic-handler-remarks.ll -o %t2.bc
4 ; Optimization records are collected regardless of the diagnostic handler
5 ; RUN: rm -f %t.yaml.thin.0.yaml %t.yaml.thin.1.yaml
6 ; RUN: llvm-lto -thinlto-action=run \
7 ; RUN:          -lto-pass-remarks-output=%t.yaml \
8 ; RUN:          -lto-pass-remarks-filter=inline \
9 ; RUN:          -lto-pass-remarks-format=yaml \
10 ; RUN:          -exported-symbol _func2 \
11 ; RUN:          -exported-symbol _main %t1.bc %t2.bc 2>&1 | \
12 ; RUN:     FileCheck %s -allow-empty
13 ; CHECK-NOT: remark:
14 ; CHECK-NOT: llvm-lto:
17 ; Verify that bar is imported and inlined into foo
18 ; RUN: cat %t.yaml.thin.0.yaml | FileCheck %s -check-prefix=YAML1
19 ; YAML1:      --- !Passed
20 ; YAML1-NEXT: Pass:            inline
21 ; YAML1-NEXT: Name:            Inlined
22 ; YAML1-NEXT: Function:        main
23 ; YAML1-NEXT: Args:
24 ; YAML1-NEXT:   - Callee:          foo
25 ; YAML1-NEXT:   - String:          ' inlined into '
26 ; YAML1-NEXT:   - Caller:          main
27 ; YAML1-NEXT:   - String:          ' with '
28 ; YAML1-NEXT:   - String:          '(cost='
29 ; YAML1-NEXT:   - Cost:            '-30'
30 ; YAML1-NEXT:   - String:          ', threshold='
31 ; YAML1-NEXT:   - Threshold:       '337'
32 ; YAML1-NEXT:   - String:          ')'
33 ; YAML1-NEXT: ...
36 ; Verify that bar is imported and inlined into foo
37 ; RUN: cat %t.yaml.thin.1.yaml | FileCheck %s -check-prefix=YAML2
38 ; YAML2: --- !Passed
39 ; YAML2-NEXT: Pass:            inline
40 ; YAML2-NEXT: Name:            Inlined
41 ; YAML2-NEXT: Function:        foo
42 ; YAML2-NEXT: Args:
43 ; YAML2-NEXT:   - Callee:          bar
44 ; YAML2-NEXT:   - String:          ' inlined into '
45 ; YAML2-NEXT:   - Caller:          foo
46 ; YAML2-NEXT:   - String:          ' with '
47 ; YAML2-NEXT:   - String:          '(cost='
48 ; YAML2-NEXT:   - Cost:            '-30'
49 ; YAML2-NEXT:   - String:          ', threshold='
50 ; YAML2-NEXT:   - Threshold:       '337'
51 ; YAML2-NEXT:   - String:          ')'
52 ; YAML2-NEXT: ...
55 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
56 target triple = "x86_64-apple-macosx10.11.0"
58 define i32 @bar() {
59         ret i32 42
61 declare i32 @foo()
62 define i32 @main() {
63   %i = call i32 @foo()
64   ret i32 %i