You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: %clang_cc1 -w -analyze -analyzer-checker=core,unix.Malloc -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
// Test that strange prototypes doesn't crash the analyzer
|
|
|
|
void malloc(int i);
|
|
void valloc(int i);
|
|
|
|
void test1()
|
|
{
|
|
malloc(1);
|
|
}
|
|
|
|
void test2()
|
|
{
|
|
valloc(1);
|
|
}
|