mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 12:56:08 +00:00

In the discussion around #116792, @rjmccall mentioned that ARCMigrate has been obsoleted and that we could go ahead and remove it from Clang, so this patch does just that.
9 lines
268 B
C
9 lines
268 B
C
// RUN: %clang_cc1 -triple i686-pc-win32 -fms-extensions -verify %s
|
|
|
|
// Do not report that 'foo()' is redeclared without dllimport attribute.
|
|
// specified.
|
|
|
|
// expected-no-diagnostics
|
|
__declspec(dllimport) int __cdecl foo(void);
|
|
inline int __cdecl foo() { return 0; }
|