Silence MSVC warning about non-void prototypes
authorReid Kleckner <rnk@google.com>
Thu, 11 Feb 2016 00:22:43 +0000 (00:22 +0000)
committerReid Kleckner <rnk@google.com>
Thu, 11 Feb 2016 00:22:43 +0000 (00:22 +0000)
commit5c10fa3f9a67fd5e83eab0f4d7c9fd5121edb8d8
tree0802d821a85d415f929e7b1ad8be8ea72694b1d2
parente1494c353a8f13b71a41ae21a4f1c4ab535b82dc
Silence MSVC warning about non-void prototypes

It thinks that these functions don't match the function pointer type
that they are passed with:

GCDAProfiling.c(578) : warning C4113: 'void (__cdecl *)()' differs in parameter lists from 'void (__cdecl *)(void)'
GCDAProfiling.c(579) : warning C4113: 'void (__cdecl *)()' differs in parameter lists from 'void (__cdecl *)(void)'
GCDAProfiling.c(580) : warning C4113: 'void (__cdecl *)()' differs in parameter lists from 'void (__cdecl *)(void)'

llvm-svn: 260475
compiler-rt/lib/profile/GCDAProfiling.c