From 4df50e1fb0ad397e029beda0368f24dcde138df3 Mon Sep 17 00:00:00 2001 From: Adam Nemet Date: Fri, 2 Dec 2016 17:53:49 +0000 Subject: [PATCH] Make LTO opt-remarks tests matching stricter This ensures that we don't generate the hotness attribute by default. llvm-svn: 288518 --- llvm/test/LTO/X86/diagnostic-handler-remarks.ll | 18 ++++++------ .../test/ThinLTO/X86/diagnostic-handler-remarks.ll | 34 +++++++++++----------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/llvm/test/LTO/X86/diagnostic-handler-remarks.ll b/llvm/test/LTO/X86/diagnostic-handler-remarks.ll index def3cd2..c9e6beb 100644 --- a/llvm/test/LTO/X86/diagnostic-handler-remarks.ll +++ b/llvm/test/LTO/X86/diagnostic-handler-remarks.ll @@ -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" diff --git a/llvm/test/ThinLTO/X86/diagnostic-handler-remarks.ll b/llvm/test/ThinLTO/X86/diagnostic-handler-remarks.ll index 87b8a46..7467a08 100644 --- a/llvm/test/ThinLTO/X86/diagnostic-handler-remarks.ll +++ b/llvm/test/ThinLTO/X86/diagnostic-handler-remarks.ll @@ -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" -- 2.7.4