Skip to content

Commit 4316364

Browse files
committed
Remove experimental-debug-variable-locations after 0e4b8b8 (#3222)
Original commit: KhronosGroup/SPIRV-LLVM-Translator@91c5cabcc75a975
1 parent a6fe953 commit 4316364

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

llvm-spirv/test/DebugInfo/DebugDeclareUnused.cl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
// RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o - | FileCheck %s --check-prefix=CHECK-LLVM
77

88
// RUN: %clang_cc1 %s -triple spir -disable-llvm-passes -debug-info-kind=standalone -emit-llvm-bc -o - | llvm-spirv -spirv-mem2reg -o %t.spv
9-
// RUN: llvm-spirv --experimental-debuginfo-iterators=1 %t.spv -to-text -o - | FileCheck %s --check-prefix=CHECK-SPIRV
10-
// RUN: llvm-spirv -r --experimental-debuginfo-iterators=1 %t.spv -o - | llvm-dis -o - | FileCheck %s --check-prefix=CHECK-LLVM
9+
// RUN: llvm-spirv %t.spv -to-text -o - | FileCheck %s --check-prefix=CHECK-SPIRV
10+
// RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o - | FileCheck %s --check-prefix=CHECK-LLVM
1111

1212

1313
void foo() {

llvm-spirv/test/DebugInfo/DebugInfoLLVMArg.ll

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
; RUN: llvm-dis < %t.rev.bc | FileCheck %s --check-prefix=CHECK-LLVM-200
1717

1818
; RUN: llvm-as %s -o %t.bc
19-
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-allow-extra-diexpressions --experimental-debuginfo-iterators=1
20-
; RUN: llvm-spirv %t.spv -to-text -o %t.spt --experimental-debuginfo-iterators=1
19+
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-allow-extra-diexpressions
20+
; RUN: llvm-spirv %t.spv -to-text -o %t.spt
2121
; RUN: FileCheck < %t.spt %s --check-prefixes=CHECK-SPIRV-OCL
22-
; RUN: llvm-spirv -r --experimental-debuginfo-iterators=1 %t.spv -o %t.rev.bc
22+
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc
2323
; RUN: llvm-dis < %t.rev.bc | FileCheck %s --check-prefix=CHECK-LLVM-OCL
2424

2525
; RUN: llvm-as %s -o %t.bc
26-
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-debug-info-version=nonsemantic-shader-200 --experimental-debuginfo-iterators=1
27-
; RUN: llvm-spirv %t.spv -to-text -o %t.spt --experimental-debuginfo-iterators=1
26+
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-debug-info-version=nonsemantic-shader-200
27+
; RUN: llvm-spirv %t.spv -to-text -o %t.spt
2828
; RUN: FileCheck < %t.spt %s --check-prefixes=CHECK-SPIRV-200
29-
; RUN: llvm-spirv -r --experimental-debuginfo-iterators=1 %t.spv -o %t.rev.bc
29+
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc
3030
; RUN: llvm-dis < %t.rev.bc | FileCheck %s --check-prefix=CHECK-LLVM-200
3131

3232
; CHECK-SPIRV-200-DAG: TypeInt [[#INT32:]] 32 0

llvm-spirv/test/DebugInfo/DebugInfoTypeInheritance.ll

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@
1414
; RUN: FileCheck %s --input-file %t.rev.ll --check-prefix CHECK-LLVM
1515

1616
; RUN: llvm-as %s -o %t.bc
17-
; RUN: llvm-spirv %t.bc -spirv-text -o %t.spt --experimental-debuginfo-iterators=1
17+
; RUN: llvm-spirv %t.bc -spirv-text -o %t.spt
1818
; RUN: FileCheck %s --input-file %t.spt --check-prefixes=CHECK-SPIRV,CHECK-SPIRV-OCL
19-
; RUN: llvm-spirv %t.bc -o %t.spv --experimental-debuginfo-iterators=1
20-
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc --experimental-debuginfo-iterators=1
19+
; RUN: llvm-spirv %t.bc -o %t.spv
20+
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc
2121
; RUN: llvm-dis %t.rev.bc -o %t.rev.ll
2222
; RUN: FileCheck %s --input-file %t.rev.ll --check-prefix CHECK-LLVM
2323

24-
; RUN: llvm-spirv %t.bc -spirv-text --spirv-debug-info-version=nonsemantic-shader-100 -o %t.spt --experimental-debuginfo-iterators=1
24+
; RUN: llvm-spirv %t.bc -spirv-text --spirv-debug-info-version=nonsemantic-shader-100 -o %t.spt
2525
; RUN: FileCheck %s --input-file %t.spt --check-prefixes=CHECK-SPIRV,CHECK-SPIRV-NONSEM
26-
; RUN: llvm-spirv %t.bc --spirv-debug-info-version=nonsemantic-shader-100 -o %t.spv --experimental-debuginfo-iterators=1
27-
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc --experimental-debuginfo-iterators=1
26+
; RUN: llvm-spirv %t.bc --spirv-debug-info-version=nonsemantic-shader-100 -o %t.spv
27+
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc
2828
; RUN: llvm-dis %t.rev.bc -o %t.rev.ll
2929
; RUN: FileCheck %s --input-file %t.rev.ll --check-prefix CHECK-LLVM
3030

llvm-spirv/test/DebugInfo/DebugInfoWithUnknownIntrinsics.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
; RUN: FileCheck %s --input-file %t.ll -check-prefix=LLVM
66

77
; RUN: llvm-as %s -o %t.bc
8-
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-ext=+all --spirv-allow-unknown-intrinsics --experimental-debuginfo-iterators=1
9-
; RUN: llvm-spirv -r %t.spv -o %t.bc --experimental-debuginfo-iterators=1
8+
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-ext=+all --spirv-allow-unknown-intrinsics
9+
; RUN: llvm-spirv -r %t.spv -o %t.bc
1010
; RUN: llvm-dis %t.bc -o %t.ll
1111
; RUN: FileCheck %s --input-file %t.ll -check-prefix=LLVM
1212

llvm-spirv/test/DebugInfo/expr-opcode.ll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
; RUN: llc -mtriple=%triple -dwarf-version=4 -filetype=obj -O0 < %t.rev.ll
1515

1616
; RUN: llvm-as < %s -o %t.bc
17-
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-allow-extra-diexpressions --experimental-debuginfo-iterators=1
18-
; RUN: llvm-spirv -r --experimental-debuginfo-iterators=1 %t.spv -o - | llvm-dis -o %t.rev.ll
17+
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-allow-extra-diexpressions
18+
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.rev.ll
1919
; RUN: FileCheck %s --input-file %t.rev.ll
2020

2121
; RUN: llc -mtriple=%triple -dwarf-version=5 -filetype=obj -O0 < %t.rev.ll
2222
; RUN: llc -mtriple=%triple -dwarf-version=4 -filetype=obj -O0 < %t.rev.ll
2323

24-
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-debug-info-version=nonsemantic-shader-200 --experimental-debuginfo-iterators=1
25-
; RUN: llvm-spirv -r --experimental-debuginfo-iterators=1 %t.spv -o - | llvm-dis -o %t.rev.ll
24+
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-debug-info-version=nonsemantic-shader-200
25+
; RUN: llvm-spirv -r %t.spv -o - | llvm-dis -o %t.rev.ll
2626
; RUN: FileCheck %s --input-file %t.rev.ll
2727

2828
; RUN: llc -mtriple=%triple -dwarf-version=5 -filetype=obj -O0 < %t.rev.ll

0 commit comments

Comments
 (0)