blob: 6acb0af13772a44d4ac7c3f6a2701fe90473db01 [file] [log] [blame]
; RUN: opt -passes=function-attrs -S < %s | FileCheck %s
; This checks for a previously existing iterator wraparound bug in
; FunctionAttrs, and in the process covers corner cases with varargs.
declare void @llvm.va_start(ptr)
declare void @llvm.va_end(ptr)
define void @va_func(ptr readonly %b, ...) readonly nounwind willreturn {
; CHECK-LABEL: define void @va_func(ptr readonly captures(none) %b, ...)
entry:
%valist = alloca i8
call void @llvm.va_start(ptr %valist)
call void @llvm.va_end(ptr %valist)
%x = call i32 @caller(ptr %b)
ret void
}
define i32 @caller(ptr %x) {
; CHECK-LABEL: define noundef i32 @caller(ptr readonly captures(address) %x)
entry:
call void(ptr,...) @va_func(ptr null, i32 0, i32 0, i32 0, ptr %x)
ret i32 42
}
define void @va_func2(ptr readonly %b, ...) {
; CHECK-LABEL: define void @va_func2(ptr readonly captures(address) %b, ...)
entry:
%valist = alloca i8
call void @llvm.va_start(ptr %valist)
call void @llvm.va_end(ptr %valist)
%x = call i32 @caller(ptr %b)
ret void
}
define i32 @caller2(ptr %x, ptr %y) {
; CHECK-LABEL: define noundef i32 @caller2(ptr readonly captures(address) %x, ptr %y)
entry:
call void(ptr,...) @va_func2(ptr %x, i32 0, i32 0, i32 0, ptr %y)
ret i32 42
}