[llvm] c8a3fce - [FuncSpec] Remove other passes in a test RUN line. NFC.
    Sjoerd Meijer via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Wed Jun 16 02:40:10 PDT 2021
    
    
  
Author: Sjoerd Meijer
Date: 2021-06-16T10:36:22+01:00
New Revision: c8a3fce7769633157cd8598f7bc1210c89a7aefb
URL: https://github.com/llvm/llvm-project/commit/c8a3fce7769633157cd8598f7bc1210c89a7aefb
DIFF: https://github.com/llvm/llvm-project/commit/c8a3fce7769633157cd8598f7bc1210c89a7aefb.diff
LOG: [FuncSpec] Remove other passes in a test RUN line. NFC.
Added: 
    
Modified: 
    llvm/test/Transforms/FunctionSpecialization/function-specialization-stats.ll
Removed: 
    
################################################################################
diff  --git a/llvm/test/Transforms/FunctionSpecialization/function-specialization-stats.ll b/llvm/test/Transforms/FunctionSpecialization/function-specialization-stats.ll
index ca9d4c302541..62131775e33a 100644
--- a/llvm/test/Transforms/FunctionSpecialization/function-specialization-stats.ll
+++ b/llvm/test/Transforms/FunctionSpecialization/function-specialization-stats.ll
@@ -1,13 +1,7 @@
 ; REQUIRES: asserts
+; RUN: opt -stats -function-specialization -S < %s 2>&1 | FileCheck %s
 
-; RUN: opt -stats -function-specialization -deadargelim -inline -S < %s 2>&1 | FileCheck %s
-
-; CHECK: 2 deadargelim             - Number of unread args removed
-; CHECK: 1 deadargelim             - Number of unused return values removed
 ; CHECK: 2 function-specialization - Number of functions specialized
-; CHECK: 4 inline                  - Number of functions deleted because all callers found
-; CHECK: 4 inline                  - Number of functions inlined
-; CHECK: 6 inline-cost             - Number of call sites analyzed
 
 define i64 @main(i64 %x, i1 %flag) {
 entry:
        
    
    
More information about the llvm-commits
mailing list