Skip to content

Commit

Permalink
Make LTO opt-remarks tests matching stricter
Browse files Browse the repository at this point in the history
This ensures that we don't generate the hotness attribute by default.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@288518 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
anemet committed Dec 2, 2016
1 parent b65cc89 commit 3716239
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
18 changes: 9 additions & 9 deletions test/LTO/X86/diagnostic-handler-remarks.ll
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@
; NM: func2
; NM: main

; YAML: --- !Passed
; YAML: Pass: inline
; YAML: Name: Inlined
; YAML: Function: main
; YAML: Args:
; YAML: - Callee: foo
; YAML: - String: ' inlined into '
; YAML: - Caller: main
; YAML: ...
; YAML: --- !Passed
; YAML-NEXT: Pass: inline
; YAML-NEXT: Name: Inlined
; YAML-NEXT: Function: main
; YAML-NEXT: Args:
; YAML-NEXT: - Callee: foo
; YAML-NEXT: - String: ' inlined into '
; YAML-NEXT: - Caller: main
; YAML-NEXT: ...

target triple = "x86_64-apple-darwin"

Expand Down
34 changes: 17 additions & 17 deletions test/ThinLTO/X86/diagnostic-handler-remarks.ll
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,28 @@

; Verify that bar is imported and inlined into foo
; RUN: cat %t.yaml.thin.0.yaml | FileCheck %s -check-prefix=YAML1
; YAML1: --- !Passed
; YAML1: Pass: inline
; YAML1: Name: Inlined
; YAML1: Function: main
; YAML1: Args:
; YAML1: - Callee: foo
; YAML1: - String: ' inlined into '
; YAML1: - Caller: main
; YAML1: ...
; YAML1: --- !Passed
; YAML1-NEXT: Pass: inline
; YAML1-NEXT: Name: Inlined
; YAML1-NEXT: Function: main
; YAML1-NEXT: Args:
; YAML1-NEXT: - Callee: foo
; YAML1-NEXT: - String: ' inlined into '
; YAML1-NEXT: - Caller: main
; YAML1-NEXT: ...


; Verify that bar is imported and inlined into foo
; RUN: cat %t.yaml.thin.1.yaml | FileCheck %s -check-prefix=YAML2
; YAML2: --- !Passed
; YAML2: Pass: inline
; YAML2: Name: Inlined
; YAML2: Function: foo
; YAML2: Args:
; YAML2: - Callee: bar
; YAML2: - String: ' inlined into '
; YAML2: - Caller: foo
; YAML2: ...
; YAML2-NEXT: Pass: inline
; YAML2-NEXT: Name: Inlined
; YAML2-NEXT: Function: foo
; YAML2-NEXT: Args:
; YAML2-NEXT: - Callee: bar
; YAML2-NEXT: - String: ' inlined into '
; YAML2-NEXT: - Caller: foo
; YAML2-NEXT: ...


target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
Expand Down

0 comments on commit 3716239

Please sign in to comment.