Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / InferAddressSpaces / AMDGPU / redundant-addrspacecast.ll
blob9ac1c63e3f4cf5a8e8202079af28bba5899ca78c
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -S -mtriple=amdgcn-amd-amdhsa -passes=infer-address-spaces %s | FileCheck %s
4 %0 = type { i8, i8, i8 }
6 ; Make sure there is only one addrspacecast. The original cast should
7 ; not be cloned to satisfy the second user.
8 define void @bar(ptr addrspace(1) %orig.ptr) {
9 ; CHECK-LABEL: @bar(
10 ; CHECK-NEXT:  bb:
11 ; CHECK-NEXT:    [[ORIG_CAST:%.*]] = addrspacecast ptr addrspace(1) [[ORIG_PTR:%.*]] to ptr
12 ; CHECK-NEXT:    [[GEP0:%.*]] = getelementptr inbounds [[TMP0:%.*]], ptr [[ORIG_CAST]], i64 0, i32 1
13 ; CHECK-NEXT:    call void @foo(ptr [[GEP0]])
14 ; CHECK-NEXT:    [[GEP1:%.*]] = getelementptr inbounds [[TMP0]], ptr [[ORIG_CAST]], i64 0, i32 2
15 ; CHECK-NEXT:    call void @foo(ptr [[GEP1]])
16 ; CHECK-NEXT:    ret void
18 bb:
19   %orig.cast = addrspacecast ptr addrspace(1) %orig.ptr to ptr
20   %gep0 = getelementptr inbounds %0, ptr %orig.cast, i64 0, i32 1
21   call void @foo(ptr %gep0)
22   %gep1 = getelementptr inbounds %0, ptr %orig.cast, i64 0, i32 2
23   call void @foo(ptr %gep1)
24   ret void
27 declare void @foo(ptr)