Mercurial > hg > CbC > CbC_llvm
view clang/test/Analysis/redefined_system.c @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: %clang_analyze_cc1 -analyzer-checker=osx,unix,core,alpha.security.taint -w -verify %s // expected-no-diagnostics // Make sure we don't crash when someone redefines a system function we reason about. char memmove (void); char malloc(void); char system(void); char stdin(void); char memccpy(void); char free(void); char strdup(void); char atoi(void); int foo (void) { return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi(); }