mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 12:16:07 +00:00

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
17 lines
253 B
C
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));
|
|
}
|