1 // RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm < %s | FileCheck -check-prefix=NULL-INVALID %s
2 // RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -fno-delete-null-pointer-checks < %s | FileCheck -check-prefix=NULL-VALID %s
4 // NULL-INVALID: define{{.*}} void @foo(ptr noundef nonnull %x)
5 // NULL-VALID: define{{.*}} void @foo(ptr noundef %x)
6 void foo(int * __attribute__((nonnull
)) x
) {
10 // NULL-INVALID: define{{.*}} void @bar(ptr noundef nonnull %x)
11 // NULL-VALID: define{{.*}} void @bar(ptr noundef %x)
12 void bar(int * x
) __attribute__((nonnull(1))) {
16 // NULL-INVALID: define{{.*}} void @bar2(ptr noundef %x, ptr noundef nonnull %y)
17 // NULL-VALID: define{{.*}} void @bar2(ptr noundef %x, ptr noundef %y)
18 void bar2(int * x
, int * y
) __attribute__((nonnull(2))) {
23 // NULL-INVALID: define{{.*}} nonnull ptr @bar3()
24 // NULL-VALID: define{{.*}} ptr @bar3()
25 int * bar3(void) __attribute__((returns_nonnull
)) {
29 // NULL-INVALID: define{{.*}} i32 @bar4(i32 noundef %n, ptr noundef nonnull %p)
30 // NULL-VALID: define{{.*}} i32 @bar4(i32 noundef %n, ptr noundef %p)
31 int bar4(int n
, int *p
) __attribute__((nonnull
)) {
35 // NULL-INVALID: define{{.*}} i32 @bar5(i32 noundef %n, ptr noundef nonnull %p)
36 // NULL-VALID: define{{.*}} i32 @bar5(i32 noundef %n, ptr noundef %p)
37 int bar5(int n
, int *p
) __attribute__((nonnull(1, 2))) {
45 } TransparentUnion
__attribute__((transparent_union
));
47 // NULL-INVALID: define{{.*}} i32 @bar6(i64 %
48 // NULL-VALID: define{{.*}} i32 @bar6(i64 %
49 int bar6(TransparentUnion tu
) __attribute__((nonnull(1))) {
53 // NULL-INVALID: define{{.*}} void @bar7(ptr noundef nonnull %a, ptr noundef nonnull %b)
54 // NULL-VALID: define{{.*}} void @bar7(ptr noundef %a, ptr noundef %b)
55 void bar7(int *a
, int *b
) __attribute__((nonnull(1)))
56 __attribute__((nonnull(2))) {}
58 // NULL-INVALID: define{{.*}} void @bar8(ptr noundef nonnull %a, ptr noundef nonnull %b)
59 // NULL-VALID: define{{.*}} void @bar8(ptr noundef %a, ptr noundef %b)
60 void bar8(int *a
, int *b
) __attribute__((nonnull
))
61 __attribute__((nonnull(1))) {}