[lld] 388584d - [ELF][test] Fix RUN lines in lto/sample-profile.ll
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Sun Apr 3 23:57:42 PDT 2022
Author: Fangrui Song
Date: 2022-04-03T23:57:31-07:00
New Revision: 388584d382b2ba289b11f29fa217cc233f254c4b
URL: https://github.com/llvm/llvm-project/commit/388584d382b2ba289b11f29fa217cc233f254c4b
DIFF: https://github.com/llvm/llvm-project/commit/388584d382b2ba289b11f29fa217cc233f254c4b.diff
LOG: [ELF][test] Fix RUN lines in lto/sample-profile.ll
Reported at https://github.com/llvm/llvm-project/issues/54679#issuecomment-1086862116
Added:
Modified:
lld/test/ELF/lto/sample-profile.ll
Removed:
################################################################################
diff --git a/lld/test/ELF/lto/sample-profile.ll b/lld/test/ELF/lto/sample-profile.ll
index 989ed0591555c..68976dfa7ecd7 100644
--- a/lld/test/ELF/lto/sample-profile.ll
+++ b/lld/test/ELF/lto/sample-profile.ll
@@ -2,18 +2,18 @@
; RUN: opt -module-summary %s -o %t1.o
; RUN: opt -module-summary %p/Inputs/thinlto.ll -o %t2.o
-; RUN: rm -f %t1.lto.o %t2.lto.o
-; RUN: ld.lld --lto-sample-profile=%p/Inputs/sample-profile.prof %t1.o %t2.o -o %t3
-; RUN opt -S %t3.lto.o | FileCheck %s
+; RUN: rm -f %t1.o.4.opt.bc
+; RUN: ld.lld --lto-sample-profile=%p/Inputs/sample-profile.prof %t1.o %t2.o --save-temps -o %t3
+; RUN: opt -S %t1.o.4.opt.bc | FileCheck %s
-; RUN: rm -f %t1.lto.o %t2.lto.o
-; RUN: ld.lld --plugin-opt=sample-profile=%p/Inputs/sample-profile.prof %t1.o %t2.o -o %t3
-; RUN opt -S %t3.lto.o | FileCheck %s
+; RUN: rm -f %t1.o.4.opt.bc
+; RUN: ld.lld --plugin-opt=sample-profile=%p/Inputs/sample-profile.prof %t1.o %t2.o --save-temps -o %t3
+; RUN: opt -S %t1.o.4.opt.bc | FileCheck %s
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
-; CHECK: ProfileSummary
+; CHECK: ![[#]] = !{i32 1, !"ProfileSummary", ![[#]]}
declare void @g(...)
declare void @h(...)
More information about the llvm-commits
mailing list