1 ; RUN: opt < %s -passes=instcombine -data-layout="p:32:32" -S | FileCheck %s --check-prefixes=CHECK,CHECK32
2 ; RUN: opt < %s -passes=instcombine -data-layout="p:64:64" -S | FileCheck %s --check-prefixes=CHECK,CHECK64
4 define signext i32 @b(ptr inreg %x) {
12 declare void @useit(i32)
14 define void @d(i32 %x, ...) {
15 call void @useit(i32 %x)
19 define void @naked_func() naked {
20 tail call void asm sideeffect "mov r1, r0", ""()
24 define void @g(ptr %y) {
25 call i32 @b(i32 zeroext 0)
27 call void @c(ptr sret(i32) %y)
28 call void @d(i32 0, ptr sret(i32) %y)
29 call void @d(i32 0, ptr nocapture %y)
30 call void @d(ptr nocapture noundef %y)
31 call void @naked_func(i32 1)
34 ; CHECK-LABEL: define void @g(ptr %y)
35 ; CHECK: call i32 @b(i32 zeroext 0)
36 ; CHECK: call void (...) @c(ptr %y)
37 ; CHECK: call void @c(ptr sret(i32) %y)
38 ; CHECK: call void @d(i32 0, ptr sret(i32) %y)
39 ; CHECK: call void (i32, ...) @d(i32 0, ptr nocapture %y)
40 ; CHECK32: %2 = ptrtoint ptr %y to i32
41 ; CHECK32: call void (i32, ...) @d(i32 noundef %2)
42 ; CHECK64: call void @d(ptr nocapture noundef %y)
43 ; CHECK: call void @naked_func(i32 1)