mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-03-04 16:41:43 +00:00
Fixup "[analyzer] CStringChecker buffer access checks should check the first bytes"
0954dc3fb9214b994623f5306473de075f8e3593 broke a build bot: https://lab.llvm.org/buildbot/#/builders/245/builds/13891 clang/test/Analysis/string.c Line 74: incompatible redeclaration of library function 'memcpy' Line 74: 'memcpy' is a builtin with type 'void *(void *, const void *, unsigned int)' Differential Revision: https://reviews.llvm.org/D159109
This commit is contained in:
parent
5b96fcb5b8
commit
706afc9778
@ -71,7 +71,7 @@ void clang_analyzer_eval(int);
|
||||
int scanf(const char *restrict format, ...);
|
||||
void *malloc(size_t);
|
||||
void free(void *);
|
||||
void *memcpy(void *dest, const void *src, unsigned long n);
|
||||
void *memcpy(void *dest, const void *src, size_t n);
|
||||
|
||||
//===----------------------------------------------------------------------===
|
||||
// strlen()
|
||||
|
Loading…
x
Reference in New Issue
Block a user