[llvm-branch-commits] [llvm] ee571f8 - [ThinLTO][test] Fix X86/nossp.ll after D91816
Fangrui Song via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Dec 2 13:18:04 PST 2020
Author: Fangrui Song
Date: 2020-12-02T13:13:58-08:00
New Revision: ee571f87bf41ed0f0232c3daf40909bc3135d620
URL: https://github.com/llvm/llvm-project/commit/ee571f87bf41ed0f0232c3daf40909bc3135d620
DIFF: https://github.com/llvm/llvm-project/commit/ee571f87bf41ed0f0232c3daf40909bc3135d620.diff
LOG: [ThinLTO][test] Fix X86/nossp.ll after D91816
Added:
Modified:
llvm/test/ThinLTO/X86/nossp.ll
Removed:
################################################################################
diff --git a/llvm/test/ThinLTO/X86/nossp.ll b/llvm/test/ThinLTO/X86/nossp.ll
index 128796c384dd..c542a85c6f74 100644
--- a/llvm/test/ThinLTO/X86/nossp.ll
+++ b/llvm/test/ThinLTO/X86/nossp.ll
@@ -1,17 +1,17 @@
; RUN: split-file %s %t
-; RUN: opt -module-summary %t/a.ll -o %a.bc
-; RUN: opt -module-summary %t/b.ll -o %b.bc
-; RUN: llvm-lto2 run %a.bc %b.bc -o %c.bc -save-temps \
-; RUN: -r=%a.bc,nossp_caller,px \
-; RUN: -r=%a.bc,ssp_caller,px \
-; RUN: -r=%a.bc,nossp_caller2,px \
-; RUN: -r=%a.bc,ssp_caller2,px \
-; RUN: -r=%a.bc,nossp_callee,x \
-; RUN: -r=%a.bc,ssp_callee,x \
-; RUN: -r=%b.bc,nossp_callee,px \
-; RUN: -r=%b.bc,ssp_callee,px \
-; RUN: -r=%b.bc,foo
-; RUN: llvm-dis %c.bc.1.4.opt.bc -o - | FileCheck %s
+; RUN: opt -module-summary %t/a.ll -o %ta.bc
+; RUN: opt -module-summary %t/b.ll -o %tb.bc
+; RUN: llvm-lto2 run %ta.bc %tb.bc -o %tc.bc -save-temps \
+; RUN: -r=%ta.bc,nossp_caller,px \
+; RUN: -r=%ta.bc,ssp_caller,px \
+; RUN: -r=%ta.bc,nossp_caller2,px \
+; RUN: -r=%ta.bc,ssp_caller2,px \
+; RUN: -r=%ta.bc,nossp_callee,x \
+; RUN: -r=%ta.bc,ssp_callee,x \
+; RUN: -r=%tb.bc,nossp_callee,px \
+; RUN: -r=%tb.bc,ssp_callee,px \
+; RUN: -r=%tb.bc,foo
+; RUN: llvm-dis %tc.bc.1.4.opt.bc -o - | FileCheck %s
;--- a.ll
More information about the llvm-branch-commits
mailing list