From 98b9fc9b93d7116cec9b661f809441488c3894cb Mon Sep 17 00:00:00 2001 From: Nick Desaulniers Date: Tue, 29 Jun 2021 17:09:39 -0700 Subject: [PATCH] [Test] delete LPM RUNs in inline_nossp.ll This test was modified in D104958. Invoking opt with -{passname} (vs -passes={passname}) without -enable-new-pm={0|1} is now ambiguous and dependent on how LLVM was configured. Drop the LPM runs rather than fix since there unlikely to be any users still on LPM that rely on the behavior in this test. See also: https://lists.llvm.org/pipermail/llvm-dev/2021-June/151553.html Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D105154 --- llvm/test/Transforms/Inline/inline_nossp.ll | 2 -- 1 file changed, 2 deletions(-) diff --git a/llvm/test/Transforms/Inline/inline_nossp.ll b/llvm/test/Transforms/Inline/inline_nossp.ll index 2a4c8c6..24fdab0 100644 --- a/llvm/test/Transforms/Inline/inline_nossp.ll +++ b/llvm/test/Transforms/Inline/inline_nossp.ll @@ -1,7 +1,5 @@ ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py -; RUN: opt -inline -o - -S %s -pass-remarks-missed=inline 2>&1 | FileCheck --check-prefixes=CHECK,CHECK-INLINE %s ; RUN: opt -passes='cgscc(inline)' %s -S -pass-remarks-missed=inline 2>&1 | FileCheck --check-prefixes=CHECK,CHECK-INLINE %s -; RUN: opt -always-inline -o - -S %s | FileCheck %s ; RUN: opt -passes=always-inline -o - -S %s | FileCheck %s ; CHECK-INLINE: ssp not inlined into nossp_caller because it should never be inlined (cost=never): stack protected callee but caller requested no stack protector -- 2.7.4