]> granicus.if.org Git - clang/commit
Avoid names like __in that conflict with SAL in builtin headers
authorReid Kleckner <reid@kleckner.net>
Fri, 19 Apr 2013 17:00:14 +0000 (17:00 +0000)
committerReid Kleckner <reid@kleckner.net>
Fri, 19 Apr 2013 17:00:14 +0000 (17:00 +0000)
commitf0cdc84298103e57919674bd1781624c74ab76d3
treeafaafc525b7cdc92911a25b70b65167ce9bff940
parentb80a16eadd0dacabfc1c32412e243ccb99dd664d
Avoid names like __in that conflict with SAL in builtin headers

Microsoft's Source Annotation Language (SAL) defines a bunch of keywords
for annotating the inputs and outputs of functions.  Empty definitions
for the keywords are provided by <stdlib.h> -> <crtdefs.h> -> <sal.h>.
This makes it basically impossible to include MSVC's stdlib.h and
Clang's *mmintrin.h headers at the same time if they have variables
named __in.  As a workaround, I've renamed those variables.

This fixes the Modules/compiler_builtins.m test which was XFAILed,
presumably due to this conflict.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179860 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Headers/avxintrin.h
lib/Headers/emmintrin.h
test/Modules/compiler_builtins.m