[lld] 6e994a8 - [lld] Remove timers.ll because inconsistent timers behavior causes the test to fail sometimes

Amy Huang via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 20 09:57:27 PDT 2021


Author: Amy Huang
Date: 2021-09-20T09:57:18-07:00
New Revision: 6e994a833e8bfe616fdf40155eefbee033d427ec

URL: https://github.com/llvm/llvm-project/commit/6e994a833e8bfe616fdf40155eefbee033d427ec
DIFF: https://github.com/llvm/llvm-project/commit/6e994a833e8bfe616fdf40155eefbee033d427ec.diff

LOG: [lld] Remove timers.ll because inconsistent timers behavior causes the test to fail sometimes

See https://reviews.llvm.org/D109904

Added: 
    

Modified: 
    

Removed: 
    lld/test/COFF/timers.ll


################################################################################
diff  --git a/lld/test/COFF/timers.ll b/lld/test/COFF/timers.ll
deleted file mode 100644
index 741a0e536b25..000000000000
--- a/lld/test/COFF/timers.ll
+++ /dev/null
@@ -1,62 +0,0 @@
-; REQUIRES: x86
-; RUN: llvm-as %s -o %t.obj
-
-; Test 
diff erent configurations of lld to get all possible timer outputs.
-; RUN: lld-link %t.obj -time -entry:main -debug:noghash 2>&1 | \
-; RUN:   FileCheck %s --check-prefix=CHECK1
-; RUN: lld-link %t.obj -time -entry:main -debug 2>&1 | \
-; RUN:   FileCheck %s --check-prefix=CHECK2
-; RUN: lld-link %t.obj -time -entry:main -map 2>&1 | \
-; RUN:   FileCheck %s --check-prefix=CHECK3
-
-; CHECK1: Input File Reading:
-; CHECK1: LTO:
-; CHECK1: Code Layout:
-; CHECK1: Commit Output File:
-; CHECK1: PDB Emission (Cumulative):
-; CHECK1:   Add Objects:
-; CHECK1:     Type Merging:
-; CHECK1:     Symbol Merging:
-; CHECK1:   Publics Stream Layout:
-; CHECK1:   TPI Stream Layout:
-; CHECK1:   Commit to Disk:
-
-; CHECK2: Input File Reading:
-; CHECK2: LTO:
-; CHECK2: Code Layout:
-; CHECK2: Commit Output File:
-; CHECK2: PDB Emission (Cumulative):
-; CHECK2:   Add Objects:
-; CHECK2:     Global Type Hashing:
-; CHECK2:     GHash Type Merging:
-; CHECK2:     Symbol Merging:
-; CHECK2:   Publics Stream Layout:
-; CHECK2:   TPI Stream Layout:
-; CHECK2:   Commit to Disk:
-
-; CHECK3: Input File Reading:
-; CHECK3: LTO:
-; CHECK3: GC:
-; CHECK3: ICF:
-; CHECK3: Code Layout:
-; CHECK3: Commit Output File:
-; CHECK3: MAP Emission (Cumulative):
-; CHECK3:   Gather Symbols:
-; CHECK3:   Build Symbol Strings:
-; CHECK3:   Write to File:
-
-target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
-target triple = "x86_64-pc-windows-msvc19.11.0"
-
-define dso_local i32 @main() {
-entry:
-  ret i32 0
-}
-
-!llvm.dbg.cu = !{!0}
-!llvm.module.flags = !{!2, !3}
-
-!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus_14, file: !1, producer: "clang version 14.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, splitDebugInlining: false, nameTableKind: None)
-!1 = !DIFile(filename: "t.cpp", directory: "", checksumkind: CSK_MD5, checksum: "495fd79f78a98304e065540d576057d9")
-!2 = !{i32 2, !"CodeView", i32 1}
-!3 = !{i32 2, !"Debug Info Version", i32 3}


        


More information about the llvm-commits mailing list