
These tests are currently failing and their fix is being tracked in Issue #60133. Marking them as XFAIL for now will get the test suite to a passing state so we can work on adding a GitHub action to automatically run these tests on a PR bot to help keep the tree green. Also removed the no-longer supported -opaque-pointers=0 flag from the couple tests where it was remaining.
14 lines
461 B
LLVM
14 lines
461 B
LLVM
; RUN: llc -O0 -mtriple=spirv32-unknown-unknown %s -o - | FileCheck %s
|
|
|
|
; TODO(#60133): Requires updates following opaque pointer migration.
|
|
; XFAIL: *
|
|
|
|
%struct.Node = type { %struct.Node.0 addrspace(1)* }
|
|
; CHECK: %[[#]] = OpTypeOpaque "struct.Node.0"
|
|
%struct.Node.0 = type opaque
|
|
|
|
define spir_kernel void @create_linked_lists(%struct.Node addrspace(1)* nocapture %pNodes, i32 addrspace(1)* nocapture %allocation_index, i32 %list_length) {
|
|
entry:
|
|
ret void
|
|
}
|