diff options
Diffstat (limited to 'llvm/test')
-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 | ||||
-rw-r--r-- | llvm/test/ThinLTO/X86/globals-import.ll | 2 | ||||
-rw-r--r-- | llvm/test/ThinLTO/X86/local_name_conflict.ll | 2 | ||||
-rw-r--r-- | llvm/test/tools/gold/X86/v1.12/thinlto_emit_linked_objects.ll | 2 |
6 files changed, 8 insertions, 8 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" diff --git a/llvm/test/ThinLTO/X86/globals-import.ll b/llvm/test/ThinLTO/X86/globals-import.ll index 0837cafd06f..d784398f792 100644 --- a/llvm/test/ThinLTO/X86/globals-import.ll +++ b/llvm/test/ThinLTO/X86/globals-import.ll @@ -15,7 +15,7 @@ ; RUN: llvm-dis %t2.bc.thinlto.promoted.bc -o - | FileCheck --check-prefix=PROMOTE1 %s ; RUN: llvm-dis %t2b.bc.thinlto.promoted.bc -o - | FileCheck --check-prefix=PROMOTE2 %s -; IMPORT: @baz.llvm.0 = available_externally hidden constant i32 10, align 4 +; IMPORT: @baz.llvm.0 = internal constant i32 10, align 4 ; PROMOTE1: @baz.llvm.0 = hidden constant i32 10, align 4 ; PROMOTE1: define weak_odr i32 @foo() { diff --git a/llvm/test/ThinLTO/X86/local_name_conflict.ll b/llvm/test/ThinLTO/X86/local_name_conflict.ll index 9e5e79b6ae2..d5497a46943 100644 --- a/llvm/test/ThinLTO/X86/local_name_conflict.ll +++ b/llvm/test/ThinLTO/X86/local_name_conflict.ll @@ -12,7 +12,7 @@ ; that module (%t3.bc) to be imported. Check that the imported reference's ; promoted name matches the imported copy. ; RUN: llvm-lto -thinlto-action=import %t.bc -thinlto-index=%t4.bc -o - | llvm-dis -o - | FileCheck %s --check-prefix=IMPORT -; IMPORT: @baz.llvm.[[HASH:[0-9]+]] = available_externally hidden constant i32 10, align 4 +; IMPORT: @baz.llvm.[[HASH:[0-9]+]] = internal constant i32 10, align 4 ; IMPORT: call i32 @foo.llvm.[[HASH]] ; IMPORT: define available_externally hidden i32 @foo.llvm.[[HASH]]() diff --git a/llvm/test/tools/gold/X86/v1.12/thinlto_emit_linked_objects.ll b/llvm/test/tools/gold/X86/v1.12/thinlto_emit_linked_objects.ll index b110eb0de2e..1d585762aa0 100644 --- a/llvm/test/tools/gold/X86/v1.12/thinlto_emit_linked_objects.ll +++ b/llvm/test/tools/gold/X86/v1.12/thinlto_emit_linked_objects.ll @@ -35,7 +35,7 @@ ; should not be set. ; RUN: llvm-bcanalyzer --dump %t1.o.thinlto.bc | FileCheck %s -check-prefixes=CHECK-BC1 ; CHECK-BC1: <GLOBALVAL_SUMMARY_BLOCK -; CHECK-BC1: <FLAGS op0=1/> +; CHECK-BC1: <FLAGS op0=33/> ; CHECK-BC1: </GLOBALVAL_SUMMARY_BLOCK ; Nothing interesting in the corresponding object file, so |