xref: /aosp_15_r20/external/clang/test/Analysis/malloc-protoype.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -w -analyze -analyzer-checker=core,unix.Malloc -verify %s
2 // expected-no-diagnostics
3 
4 // Test that strange prototypes doesn't crash the analyzer
5 
6 void malloc(int i);
7 void valloc(int i);
8 
test1()9 void test1()
10 {
11   malloc(1);
12 }
13 
test2()14 void test2()
15 {
16   valloc(1);
17 }
18