mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
252673a9d9
See https://reviews.llvm.org/D47106 for details. Reviewed By: probinson Differential Revision: https://reviews.llvm.org/D47171 This commit drops that patch's changes to: llvm/test/CodeGen/NVPTX/f16x2-instructions.ll llvm/test/CodeGen/NVPTX/param-load-store.ll For some reason, the dos line endings there prevent me from commiting via the monorepo. A follow-up commit (not via the monorepo) will finish the patch. llvm-svn: 336843
23 lines
691 B
LLVM
23 lines
691 B
LLVM
; Bitcode compatibility test for dso_local flag in thin-lto summaries.
|
|
; Checks that older bitcode summaries without the dso_local op are still
|
|
; properly parsed and don't set GlobalValues as dso_local.
|
|
|
|
; RUN: llvm-dis < %s.bc | FileCheck -allow-deprecated-dag-overlap %s
|
|
; RUN: llvm-bcanalyzer -dump %s.bc | FileCheck -allow-deprecated-dag-overlap %s --check-prefix=BCAN
|
|
|
|
define void @foo() {
|
|
;CHECK-DAG:define void @foo()
|
|
ret void
|
|
}
|
|
|
|
@bar = global i32 0
|
|
;CHECK-DAG: @bar = global i32 0
|
|
|
|
@baz = alias i32, i32* @bar
|
|
;CHECK-DAG: @bar = global i32 0
|
|
|
|
;BCAN: <SOURCE_FILENAME
|
|
;BCAN-NEXT: <GLOBALVAR {{.*}} op7=0/>
|
|
;BCAN-NEXT: <FUNCTION {{.*}} op16=0/>
|
|
;BCAN-NEXT: <ALIAS {{.*}} op9=0/>
|