[llvm] [NFC] [DirectX] Update DirectX codegen test `CBufferAccess/gep-ce-two-uses.ll` due to changes to ReplaceConstant (PR #169848)
Justin Bogner via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 27 12:30:26 PST 2025
================
@@ -21,6 +21,22 @@ entry:
%a1 = load float, ptr addrspace(2) getelementptr inbounds nuw (i8, ptr addrspace(2) @a1, i32 16), align 4
store float %a1, ptr %dst, align 32
+ %a2 = load float, ptr addrspace(2) getelementptr inbounds nuw (i8, ptr addrspace(2) @a1, i32 16), align 4
+ store float %a2, ptr %dst, align 32
+
+ ret void
+}
+
+; CHECK: define void @g
+define void @g(ptr %dst) {
+entry:
+ ; CHECK: [[PTR:%.*]] = call ptr addrspace(2) @llvm.dx.resource.getpointer.{{.*}}(target("dx.CBuffer", %__cblayout_CB) {{%.*}}, i32 0)
+ ; CHECK: getelementptr inbounds nuw i8, ptr addrspace(2) [[PTR]], i32 16
+ %a1 = load float, ptr addrspace(2) getelementptr inbounds nuw (i8, ptr addrspace(2) @a1, i32 16), align 4
+ store float %a1, ptr %dst, align 32
----------------
bogner wrote:
and I guess for completeness checking that the two stores use their own GEPs here might make sense.
https://github.com/llvm/llvm-project/pull/169848
More information about the llvm-commits
mailing list