Skip to content

Commit 02fcf51

Browse files
committed
Fix NVPTX/lower-args-nvcl.ll test
Update the lower-args-nvcl.ll test to use the newly preferred untyped load/stores to b64 instead of the u64 ones the origninal version of the test used.
1 parent 7853795 commit 02fcf51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/test/CodeGen/NVPTX/lower-args-nvcl.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ target triple = "nvptx64-nvidia-nvcl"
99
define ptx_kernel void @ptr_nongeneric(ptr addrspace(1) %out, ptr addrspace(3) %in) {
1010
; IR-NOT: addrspacecast
1111
; PTX-NOT: cvta.to.global
12-
; PTX: ld.shared.u32
13-
; PTX st.global.u32
12+
; PTX: ld.shared.b32
13+
; PTX st.global.b32
1414
%v = load i32, ptr addrspace(3) %in, align 4
1515
store i32 %v, ptr addrspace(1) %out, align 4
1616
ret void

0 commit comments

Comments
 (0)