34 lines
1.2 KiB
C
34 lines
1.2 KiB
C
// RUN: cat %s | %cling -Xclang -verify | FileCheck %s
|
|
//This file checks a call instruction. The called function has arguments with nonnull attribute.
|
|
#include <string.h>
|
|
//XFAIL: darwin
|
|
|
|
char *p = 0;
|
|
strcmp("a", p); // expected-warning {{you are about to dereference null ptr, which probably will lead to seg violation. Do you want to proceed?[y/n]}}
|
|
|
|
strcmp(p, "a"); // expected-warning {{you are about to dereference null ptr, which probably will lead to seg violation. Do you want to proceed?[y/n]}}
|
|
|
|
extern "C" int printf(const char* fmt, ...);
|
|
.rawInput 1
|
|
extern "C" int cannotCallWithNull(int* p = 0);
|
|
extern "C" int cannotCallWithNull(int* p) __attribute__((nonnull(1)));
|
|
extern "C" int cannotCallWithNull(int* p);
|
|
extern "C" int cannotCallWithNull(int* p);
|
|
.rawInput 0
|
|
|
|
extern "C" int cannotCallWithNull(int* p) {
|
|
if (!p)
|
|
printf("Must not be called with p=0.\n");
|
|
return 1;
|
|
}
|
|
|
|
cannotCallWithNull() // expected-warning {{null passed to a callee which requires a non-null argument}}
|
|
// expected-warning {{you are about to dereference null ptr, which probably will lead to seg violation. Do you want to proceed?[y/n]}}
|
|
//CHECK-NOT: Must not be called with p=0.
|
|
cannotCallWithNull(new int(4))
|
|
//CHECK: (int) 1
|
|
|
|
|
|
|
|
.q
|