File tree Expand file tree Collapse file tree 5 files changed +20
-20
lines changed
Expand file tree Collapse file tree 5 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 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
1313void foo () {
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments