Skip to content

Commit 201553c

Browse files
svenvhdwoodwor-intel
authored andcommitted
Disable opaque pointers for tests
Temporarily explicitly disable opaque pointers for tests, after LLVM commit 41d5033 ("[IR] Enable opaque pointers by default", 2022-06-02). Original commit: KhronosGroup/SPIRV-LLVM-Translator@2b32eb9
1 parent df5d6d5 commit 201553c

File tree

495 files changed

+504
-504
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

495 files changed

+504
-504
lines changed

llvm-spirv/test/AtomicBuiltinsFloat.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; Check that translator generates atomic instructions for atomic builtins
22
; FP-typed atomic_fetch_sub and atomic_fetch_sub_explicit should be translated
33
; to FunctionCall
4-
; RUN: llvm-as %s -o %t.bc
4+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
55
; RUN: llvm-spirv %t.bc -spirv-text -o - | FileCheck %s
66
; RUN: llvm-spirv %t.bc -o %t.spv
77
; RUN: spirv-val %t.spv

llvm-spirv/test/AtomicCompareExchange.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -to-text %t.spv -o - | FileCheck %s --check-prefix=CHECK-SPIRV
44
; RUN: spirv-val %t.spv

llvm-spirv/test/AtomicCompareExchange_cl20.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -spirv-text -o - | FileCheck %s
33
; RUN: llvm-spirv %t.bc -o %t.spv
44
; RUN: spirv-val %t.spv

llvm-spirv/test/CheckCapKernelWithoutKernel.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -spirv-text -o %t
33
; RUN: FileCheck < %t %s
44
; RUN: llvm-spirv %t.bc -o %t.spv

llvm-spirv/test/ContractionON.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-fp-contract=on
33
; RUN: llvm-spirv %t.spv -to-text -o - | FileCheck %s
44
; RUN: spirv-val %t.spv

llvm-spirv/test/ContractionOff.ll

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,22 @@
1717
; clang -cc1 -x cl -emit-llvm -O2 -disable-llvm-passes -triple spir64 1.cl -o 1.ll
1818
; opt -mem2reg 1.ll -S -o 1.o.ll
1919

20-
; RUN: llvm-as %s -o %t.bc
20+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
2121
; RUN: llvm-spirv %t.bc -o %t.spv.default
2222
; RUN: llvm-spirv %t.spv.default -to-text -o - | FileCheck %s --check-prefixes CHECK,CHECK-ON
2323
; RUN: spirv-val %t.spv.default
2424

25-
; RUN: llvm-as %s -o %t.bc
25+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
2626
; RUN: llvm-spirv %t.bc -o %t.spv.off --spirv-fp-contract=off
2727
; RUN: llvm-spirv %t.spv.off -to-text -o - | FileCheck %s --check-prefixes CHECK,CHECK-OFF
2828
; RUN: spirv-val %t.spv.off
2929

30-
; RUN: llvm-as %s -o %t.bc
30+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
3131
; RUN: llvm-spirv %t.bc -o %t.spv.fast --spirv-fp-contract=fast
3232
; RUN: llvm-spirv %t.spv.fast -to-text -o - | FileCheck %s --check-prefixes CHECK,CHECK-FAST
3333
; RUN: spirv-val %t.spv.fast
3434

35-
; RUN: llvm-as %s -o %t.bc
35+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
3636
; RUN: llvm-spirv %t.bc -o %t.spv.on --spirv-fp-contract=on
3737
; RUN: llvm-spirv %t.spv.on -to-text -o - | FileCheck %s --check-prefixes CHECK,CHECK-ON
3838
; RUN: spirv-val %t.spv.on

llvm-spirv/test/DebugInfo/COFF/global-dllimport.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/COFF/no-cus.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/DebugControlFlow.cl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %clang_cc1 -triple spir64-unknown-unknown -cl-std=CL2.0 -O0 -debug-info-kind=standalone -gno-column-info -emit-llvm %s -o %t.ll -no-opaque-pointers
2-
// RUN: llvm-as %t.ll -o %t.bc
2+
// RUN: llvm-as -opaque-pointers=0 %t.ll -o %t.bc
33
// RUN: llvm-spirv %t.bc -spirv-text -o %t.spt
44
// RUN: FileCheck < %t.spt %s --check-prefix=CHECK-SPIRV
55
// RUN: llvm-spirv %t.bc -o %t.spv

llvm-spirv/test/DebugInfo/DebugInfoChecksum.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
; Command line:
1111
; ./clang -cc1 -debug-info-kind=standalone -S -emit-llvm -triple spir -gcodeview -gcodeview-ghash main.cpp
1212

13-
; RUN: llvm-as %s -o %t.bc
13+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
1414
; RUN: llvm-spirv %t.bc -spirv-text -o - | FileCheck %s --check-prefix CHECK-SPIRV
1515
; RUN: llvm-spirv %t.bc -o %t.spv
1616
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc

llvm-spirv/test/DebugInfo/DebugInfoChecksumCompileUnit.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -spirv-text -o - | FileCheck %s --check-prefix CHECK-SPIRV
33
; RUN: llvm-spirv %t.bc -o %t.spv
44
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc

llvm-spirv/test/DebugInfo/DebugInfoLLVMArg.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; This test checks that DW_OP_LLVM_arg operation goes through round trip translation correctly.
22

3-
; RUN: llvm-as %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-allow-extra-diexpressions
55
; RUN: llvm-spirv %t.spv -to-text -o %t.spt
66
; RUN: FileCheck < %t.spt %s --check-prefix=CHECK-SPIRV

llvm-spirv/test/DebugInfo/DebugInfoLexicalBlockDependency.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
; - The parent scope of the local variable VAL is the lexical block LB
44
; - The parent scope of the lexical block LB is the subprogram.
55

6-
; RUN: llvm-as %s -o %t.bc
6+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
77
; RUN: llvm-spirv %t.bc -o %t.spv
88
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc
99
; RUN: llvm-dis %t.rev.bc -o %t.rev.ll

llvm-spirv/test/DebugInfo/DebugInfoNoneEntity.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
22
; Translation shouldn't crash:
33
; RUN: llvm-spirv %t.bc -spirv-text
44
; RUN: llvm-spirv %t.bc -o %t.spv

llvm-spirv/test/DebugInfo/DebugInfoProducer.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
; Command line:
1111
; ./clang -cc1 -debug-info-kind=standalone -v s.cpp -S -emit-llvm -triple spir
1212

13-
; RUN: llvm-as %s -o %t.bc
13+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
1414
; RUN: llvm-spirv %t.bc -spirv-text -o - | FileCheck %s --check-prefix CHECK-SPIRV
1515
; RUN: llvm-spirv %t.bc -o %t.spv
1616
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc

llvm-spirv/test/DebugInfo/DebugInfoSubrange.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
22
; RUN: llvm-spirv -spirv-text %t.bc -o %t.spt
33
; RUN: FileCheck < %t.spt %s -check-prefix=CHECK-SPIRV
44

llvm-spirv/test/DebugInfo/DebugInfoWithUnknownIntrinsics.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-ext=+all --spirv-allow-unknown-intrinsics
33
; RUN: llvm-spirv -r %t.spv -o %t.bc
44
; RUN: llvm-dis %t.bc -o %t.ll

llvm-spirv/test/DebugInfo/DebugUnstructuredControlFlow.cl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %clang_cc1 -triple spir64-unknown-unknown -cl-std=CL2.0 -O0 -debug-info-kind=standalone -gno-column-info -emit-llvm-bc %s -o %t.bc
1+
// RUN: %clang_cc1 -triple spir64-unknown-unknown -cl-std=CL2.0 -O0 -debug-info-kind=standalone -gno-column-info -emit-llvm-bc %s -o %t.bc -no-opaque-pointers
22
// RUN: llvm-spirv %t.bc --spirv-ext=+SPV_INTEL_unstructured_loop_controls -o %t.spv
33
// RUN: llvm-spirv %t.spv --to-text -o %t.spt
44
// RUN: FileCheck < %t.spt %s --check-prefix=CHECK-SPIRV

llvm-spirv/test/DebugInfo/Generic/2009-11-05-DeadGlobalVariable.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/2009-11-06-NamelessGlobalVariable.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/2009-11-10-CurrentFn.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/2010-01-05-DbgScope.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/2010-03-12-llc-crash.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/2010-03-24-MemberFn.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/2010-04-19-FramePtr.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/2010-06-29-InlinedFnLocalVar.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/2010-10-01-crash.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/PR20038.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
; For some reason, the output when targetting sparc is not quite as expected.
44
; XFAIL: sparc
55

6-
; RUN: llvm-as < %s -o %t.bc
6+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
77
; RUN: llvm-spirv %t.bc -o %t.spv
88
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
99

llvm-spirv/test/DebugInfo/Generic/bug_null_debuginfo.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/constant-pointers.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/dead-argument-order.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/debug-info-eis-option.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-debug-info-version=legacy
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/def-line.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/discriminator.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/dwarf-public-names.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/enum.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/func-using-decl.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/global.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/gmlt_profiling.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; REQUIRES: object-emission
2-
; RUN: llvm-as < %s -o %t.bc
2+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
33
; RUN: llvm-spirv %t.bc -o %t.spv
44
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
55

llvm-spirv/test/DebugInfo/Generic/imported-name-inlined.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/incorrect-variable-debugloc1.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
; for powerpc, until PR21881 is fixed.
55
; XFAIL: powerpc64
66

7-
; RUN: llvm-as < %s -o %t.bc
7+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
88
; RUN: llvm-spirv %t.bc -o %t.spv
99
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
1010

llvm-spirv/test/DebugInfo/Generic/inline-scopes.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/inlined-arguments.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/inlined-locations.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o - | FileCheck %s
44

llvm-spirv/test/DebugInfo/Generic/inlined-vars.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/linear-dbg-value.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/linkage-name-abstract.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/member-order.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/missing-abstract-variable.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/multiline.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llvm-as < %s -o %t.bc
1+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
22
; RUN: llvm-spirv %t.bc -o %t.spv
33
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
44

llvm-spirv/test/DebugInfo/Generic/namespace_function_definition.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/namespace_inline_function_definition.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

llvm-spirv/test/DebugInfo/Generic/noscopes.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; REQUIRES: object-emission
22

3-
; RUN: llvm-as < %s -o %t.bc
3+
; RUN: llvm-as -opaque-pointers=0 < %s -o %t.bc
44
; RUN: llvm-spirv %t.bc -o %t.spv
55
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.ll
66

0 commit comments

Comments
 (0)