]> granicus.if.org Git - clang/commit
Implement basic support for parsing #pragma comment, a microsoft extension
authorChris Lattner <sabre@nondot.org>
Fri, 16 Jan 2009 08:21:25 +0000 (08:21 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 16 Jan 2009 08:21:25 +0000 (08:21 +0000)
commit636c5ef6572e899d36cec1b0023fb28ba65189e1
treef70da59da87437d0c086854f0deb6959818cf961
parentf7cf85b330bedd2877e1371fb0a83e99751ae162
Implement basic support for parsing #pragma comment, a microsoft extension
documented here:
http://msdn.microsoft.com/en-us/library/7f0aews7(VS.80).aspx

This is according to my understanding reading the docs, I don't know if it
really agrees fully with what VC++ allows.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62317 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Basic/DiagnosticKinds.def
include/clang/Lex/Preprocessor.h
lib/Lex/Pragma.cpp
test/Preprocessor/pragma_microsoft.c [new file with mode: 0644]