[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Transforms / DeadArgElim / 2007-12-20-ParamAttrs.ll
bloba8ac1dda53b726d55e6dc5d5a5b01df63654fea9
1 ; RUN: opt < %s -passes=deadargelim -S | FileCheck %s
3 %struct = type { }
5 @g = global i8 0
7 ; CHECK: define internal void @foo(i8 signext %y) [[NUW:#[0-9]+]]
9 define internal zeroext i8 @foo(i8* inreg %p, i8 signext %y, ... )  nounwind {
10   store i8 %y, i8* @g
11   ret i8 0
14 define i32 @bar() {
15 ; CHECK: call void @foo(i8 signext 1) [[NUW]]
16   %A = call zeroext i8(i8*, i8, ...) @foo(i8* inreg null, i8 signext 1, %struct* byval(%struct) null ) nounwind
17   ret i32 0
20 ; CHECK: attributes [[NUW]] = { nounwind }