Displaying 1 result from an estimated 1 matches for "int64shllmod32".
2011 May 17
1
[LLVMdev] clang, windows.h, inline and static
List,
I am working on having clang parse a recent windows.h header. I am
encountering great success, however I have one problem with inlined
functions. In winnt.h, there are a series of definitions for
Int64ShllMod32 and related functions, these functions are defined as
__inline. Compiling a multi file project with clang produces errors
because these functions appear more than once and at link time
collisions occur.
The problem seems to stem from the functions not being defined as
'static'. If the func...