diff options
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/Sema/callingconv.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Sema/callingconv.c b/clang/test/Sema/callingconv.c index 424db751b64..92a20572a2c 100644 --- a/clang/test/Sema/callingconv.c +++ b/clang/test/Sema/callingconv.c @@ -40,3 +40,7 @@ Handler H = foo; void ctest3(); void __attribute__((cdecl)) ctest3() {} +// PR6408 +typedef __attribute__((stdcall)) void (*PROC)(); +PROC __attribute__((cdecl)) ctest4(const char *x) {} + |