]> granicus.if.org Git - clang/commit
Merging r195710:
authorBill Wendling <isanbard@gmail.com>
Tue, 26 Nov 2013 04:10:07 +0000 (04:10 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 26 Nov 2013 04:10:07 +0000 (04:10 +0000)
commit7f3ec66c405045ae67abf54f728845f36e91baa9
treea273892e56f2af6ab024072fe4243ac5c1cc4c71
parent13303b992574409370abff941d90ee4bfa5b97e5
Merging r195710:
------------------------------------------------------------------------
r195710 | alp | 2013-11-25 17:30:10 -0800 (Mon, 25 Nov 2013) | 10 lines

Unbreak -fms-extensions with GNU libc headers

GNU libc uses '__uptr' as a member name in C mode, conflicting with the
eponymous MSVC pointer modifier keyword.

Detect and mark the token as an identifier when these specific conditions are
met. __uptr will continue to work as a keyword for the remainder of the
translation unit.

Fixes PR17824.
------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_34@195721 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Parse/Parser.h
lib/Parse/ParseDecl.cpp
test/Sema/Inputs/ms-keyword-system-header.h [new file with mode: 0644]
test/Sema/ms-keyword-system-header.c [new file with mode: 0644]