diff options
Diffstat (limited to 'llvm/test/Bitcode')
-rw-r--r-- | llvm/test/Bitcode/summary_version.ll | 2 | ||||
-rw-r--r-- | llvm/test/Bitcode/thinlto-deadstrip-flag.ll | 4 | ||||
-rw-r--r-- | llvm/test/Bitcode/thinlto-synthetic-count-flag.ll | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/Bitcode/summary_version.ll b/llvm/test/Bitcode/summary_version.ll index e531a078d22..2a67073713c 100644 --- a/llvm/test/Bitcode/summary_version.ll +++ b/llvm/test/Bitcode/summary_version.ll @@ -2,7 +2,7 @@ ; RUN: opt -module-summary %s -o - | llvm-bcanalyzer -dump | FileCheck %s ; CHECK: <GLOBALVAL_SUMMARY_BLOCK -; CHECK: <VERSION op0=7/> +; CHECK: <VERSION op0=8/> diff --git a/llvm/test/Bitcode/thinlto-deadstrip-flag.ll b/llvm/test/Bitcode/thinlto-deadstrip-flag.ll index 5330a25dbf1..acde6e943d4 100644 --- a/llvm/test/Bitcode/thinlto-deadstrip-flag.ll +++ b/llvm/test/Bitcode/thinlto-deadstrip-flag.ll @@ -5,14 +5,14 @@ ; RUN: llvm-lto2 run %t.o -o %t.out -thinlto-distributed-indexes \ ; RUN: -r %t.o,glob,plx ; RUN: llvm-bcanalyzer -dump %t.o.thinlto.bc | FileCheck %s --check-prefix=WITHDEAD -; WITHDEAD: <FLAGS op0=1/> +; WITHDEAD: <FLAGS op0=33/> ; Ensure dead stripping performed flag is not set on distributed index ; when option used to disable dead stripping computation. ; RUN: llvm-lto2 run %t.o -o %t.out -thinlto-distributed-indexes \ ; RUN: -r %t.o,glob,plx -compute-dead=false ; RUN: llvm-bcanalyzer -dump %t.o.thinlto.bc | FileCheck %s --check-prefix=NODEAD -; NODEAD: <FLAGS op0=0/> +; NODEAD: <FLAGS op0=32/> target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-unknown-linux-gnu" diff --git a/llvm/test/Bitcode/thinlto-synthetic-count-flag.ll b/llvm/test/Bitcode/thinlto-synthetic-count-flag.ll index eb18a025b94..2174335f7bc 100644 --- a/llvm/test/Bitcode/thinlto-synthetic-count-flag.ll +++ b/llvm/test/Bitcode/thinlto-synthetic-count-flag.ll @@ -5,7 +5,7 @@ ; RUN: llvm-lto2 run %t.o -o %t.out -thinlto-distributed-indexes \ ; RUN: -r %t.o,glob,plx -compute-dead=false ; RUN: llvm-bcanalyzer -dump %t.o.thinlto.bc | FileCheck %s --check-prefix=NOSYNTHETIC -; NOSYNTHETIC: <FLAGS op0=0/> +; NOSYNTHETIC: <FLAGS op0=32/> ; Ensure synthetic entry count flag is set on distributed index ; when option used to enable synthetic count propagation @@ -13,7 +13,7 @@ ; RUN: -r %t.o,glob,plx -thinlto-synthesize-entry-counts \ ; RUN: -compute-dead=false ; RUN: llvm-bcanalyzer -dump %t.o.thinlto.bc | FileCheck %s --check-prefix=HASSYNTHETIC -; HASSYNTHETIC: <FLAGS op0=4/> +; HASSYNTHETIC: <FLAGS op0=36/> target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-unknown-linux-gnu" |