llvm-project/clang/test/Sema/warn-memset-bad-sizeof.c
Akira Hatanaka 5fa4629581 [Sema] Check whether __auto_type has been deduced before merging
This fixes a bug in clang where it emits the following diagnostic when
compiling the test case:

"argument to 'sizeof' in 'memset' call is the same pointer type 'S' as
the destination"

The code that merges __auto_type with other types was committed in
https://reviews.llvm.org/D122029.

Differential Revision: https://reviews.llvm.org/D128373
2022-06-24 09:49:07 -07:00

17 lines
253 B
C

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
typedef __SIZE_TYPE__ size_t;
void *memset(void *, int, size_t);
typedef struct {
int a;
} S;
void test() {
S s;
__auto_type dstptr = &s;
memset(dstptr, 0, sizeof(s));
}