[HLSL] Implement RWBuffer::operator[] via __builtin_hlsl_resource_getpointer (#117017)
[llvm-project.git] / llvm / test / Feature / newcasts.ll
blob828b12063e885c2d8974543cef6acf47b9c4e576
1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
5 define void @"NewCasts" (i16 %x) {
6   %a = zext i16 %x to i32
7   %b = sext i16 %x to i32
8   %c = trunc i16 %x to i8
9   %d = uitofp i16 %x to float
10   %e = sitofp i16 %x to double
11   %f = fptoui float %d to i16
12   %g = fptosi double %e to i16
13   %i = fpext float %d to double
14   %j = fptrunc double %i to float
15   %k = bitcast i32 %a to float
16   %l = inttoptr i16 %x to ptr
17   %m = ptrtoint ptr %l to i64
18   %n = insertelement <4 x i32> undef, i32 %a, i32 0
19   %o = sitofp <4 x i32> %n to <4 x float>
20   %p = uitofp <4 x i32> %n to <4 x float>
21   %q = fptosi <4 x float> %p to <4 x i32>
22   %r = fptoui <4 x float> %p to <4 x i32>
23   %s = inttoptr <4 x i32> %n to <4 x ptr>
24   %t = addrspacecast <4 x ptr> %s to <4 x ptr addrspace(1)>
25   %z = addrspacecast <4 x ptr> %s to <4 x ptr addrspace(2)>
26   ret void