diff options
author | David Herzka <david@herzka.com> | 2019-12-25 19:52:17 -0500 |
---|---|---|
committer | David Herzka <david@herzka.com> | 2019-12-25 19:52:17 -0500 |
commit | 6cf6f7dc96d55af63a15fb73499bf81d00f969b3 (patch) | |
tree | 908958ed3fc9fe4ace02f99f57a588b69425f644 | |
parent | 472bded3eda44eff84b259b2717e322dbdb7381e (diff) | |
download | bcm5719-llvm-6cf6f7dc96d55af63a15fb73499bf81d00f969b3.tar.gz bcm5719-llvm-6cf6f7dc96d55af63a15fb73499bf81d00f969b3.zip |
Revert "Make lazyload_metadata.ll resilient to the addition of new metadata kinds"
This reverts commit 2e6c15d1e7a47f11fab2dd3a40fcff01906923ae.
It causes the test to fail on Windows
-rw-r--r-- | llvm/test/ThinLTO/X86/lazyload_metadata.ll | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/llvm/test/ThinLTO/X86/lazyload_metadata.ll b/llvm/test/ThinLTO/X86/lazyload_metadata.ll index 3895b9faad1..79c377724ef 100644 --- a/llvm/test/ThinLTO/X86/lazyload_metadata.ll +++ b/llvm/test/ThinLTO/X86/lazyload_metadata.ll @@ -7,19 +7,18 @@ ; Check that importing @globalfunc1 does not trigger loading all the global ; metadata for @globalfunc2 and @globalfunc3 -; RUN: (llvm-lto -thinlto-action=import %t2.bc -thinlto-index=%t3.bc -stats 2>&1 \ -; RUN: | awk '{print "LAZY: " $0}' && \ -; RUN: llvm-lto -thinlto-action=import %t2.bc -thinlto-index=%t3.bc -stats -disable-ondemand-mds-loading 2>&1 \ -; RUN: | awk '{print "NOTLAZY: " $0}') \ -; RUN: | FileCheck %s - -; Check llvm-lto call with lazy loading enabled -; CHECK: LAZY: [[#LAZY_RECORDS:]] bitcode-reader - Number of Metadata records loaded -; CHECK: LAZY: 2 bitcode-reader - Number of MDStrings loaded - -; Check llvm-lto call with lazy loading disabled -; CHECK: NOTLAZY: [[#LAZY_RECORDS+9]] bitcode-reader - Number of Metadata records loaded -; CHECK: NOTLAZY: 7 bitcode-reader - Number of MDStrings loaded +; RUN: llvm-lto -thinlto-action=import %t2.bc -thinlto-index=%t3.bc \ +; RUN: -o /dev/null -stats \ +; RUN: 2>&1 | FileCheck %s -check-prefix=LAZY +; LAZY: 65 bitcode-reader - Number of Metadata records loaded +; LAZY: 2 bitcode-reader - Number of MDStrings loaded + +; RUN: llvm-lto -thinlto-action=import %t2.bc -thinlto-index=%t3.bc \ +; RUN: -o /dev/null -disable-ondemand-mds-loading -stats \ +; RUN: 2>&1 | FileCheck %s -check-prefix=NOTLAZY +; NOTLAZY: 74 bitcode-reader - Number of Metadata records loaded +; NOTLAZY: 7 bitcode-reader - Number of MDStrings loaded + target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.11.0" |