aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend/InitPreprocessor.cpp
AgeCommit message (Expand)Author
2011-07-05Don't define __CONSTANT_CFSTRINGS__ with -fno-constant-cfstrings issue.Fariborz Jahanian
2011-06-24Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about ...Argyrios Kyrtzidis
2011-06-20Define __cplusplus to 201103L when in (non-GNU) C++0x mode.Douglas Gregor
2011-06-16Unconditionally #define the ARC ownership qualifiers, instead of #definingJohn McCall
2011-06-15Automatic Reference Counting.John McCall
2011-06-10__OBJC__ is also a standard predefined macro.Nick Lewycky
2011-06-07The macros defined by the language standard are still available even when theNick Lewycky
2011-05-09Add a FIXME.Francois Pichet
2011-05-07Temporary preprocessor hack to get around the Microsoft __identifier(x) exten...Francois Pichet
2011-04-28Upgrade Microsoft's __int8, __int16, __int32 and __int64 types from builtin d...Francois Pichet
2011-04-23Move all of the logic for __DEPRECATED to the driver based on commentsChandler Carruth
2011-04-23Fix Clang's __DEPRECATED define to be controled by -Wdeprecated. ThisChandler Carruth
2011-04-21PR9772: Fix the definition of WINT_MIN and WINT_MAX on Linux -ffreestanding.Eli Friedman
2011-03-31Change Clang's __VERSION__ to include the same basic info as in clang -v.Daniel Dunbar
2011-03-19Preprocessor: Don't define __STDC__ in -traditional-cpp mode.Daniel Dunbar
2011-03-08Add 'OverridenFilesKeepOriginalName' field in SourceManager which if true the...Argyrios Kyrtzidis
2011-02-24Reimplement DefineTypeSize in terms of APInt. This eliminates someChris Lattner
2011-02-23Preserve what the user passed to -include when emitting .d files. Fixes PR8974!Nick Lewycky
2010-12-21Replace all uses of PathV1::makeAbsolute with PathV2::fs::make_absolute.Michael J. Spencer
2010-12-04Implement -cl-fast-relaxed-mathPeter Collingbourne
2010-11-29Merge System into Support.Michael J. Spencer
2010-11-23now the FileManager has a FileSystemOpts ivar, stop threadingChris Lattner
2010-11-03Implement -working-directory.Argyrios Kyrtzidis
2010-09-05Tell the VS headers that char16_t and char32_t are keywords, so yvals.h doesn...Steven Watanabe
2010-09-03First test commit by Francois Pichet. _CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES i...Francois Pichet
2010-08-30Predeclare class type_info in Microsoft mode, from Francois Pichet!Douglas Gregor
2010-08-21Fix typo in comment.Michael J. Spencer
2010-08-03PR7795: Fix the definition of __WCHAR_MAX__ with -fshort-wchar.Eli Friedman
2010-08-03fix some undefined behavior, PR7779.Chris Lattner
2010-07-26Introduce basic support for loading a precompiled preamble whileDouglas Gregor
2010-07-23Basic plumbing for generating a precompiled preamble for anDouglas Gregor
2010-06-30Headers: Define __INT64_TYPE__ in terms of getInt64Type(), which isn't alwaysDaniel Dunbar
2010-06-28Remove state assertion.Ted Kremenek
2010-06-28Don't crash in InitializePreprocessor() when there is no valid PTHManager. F...Ted Kremenek
2010-06-24Remove HAS_TLS define.Eric Christopher
2010-06-24More clang support for darwin tls. Add a __has_feature macro andEric Christopher
2010-05-28Add several more predefines from modern versions of GCC.Dan Gohman
2010-05-26Predefine the '__clang_analyzer__' macro when using '-analyze'.Ted Kremenek
2010-04-30Add Clang version inspection macros. Fixes PR6681.Douglas Gregor
2010-04-26fix PR6936: don't generate line marker directives when preprocessingChris Lattner
2010-04-21Sink the _GNU_SOURCE definition down into the target configuration,Douglas Gregor
2010-04-16Only predefine the macro _GNU_SOURCE in C++ mode when we're on aDouglas Gregor
2010-02-27When given unsaved files in clang_createTranslationUnitFromSourceFile,Douglas Gregor
2010-02-10Switch to using -fsjlj-exceptions instead of hard-coding it. Notably, this fixesDaniel Dunbar
2010-01-23Extend clang_createTranslationUnitFromSourceFile() to support creatingDouglas Gregor
2010-01-20Move the MacroBuilder utilitiy to its own header. Update references.Chandler Carruth
2010-01-20Fix an invalid Twine use spotty by abbeyj, it isn't safe to use TwineDaniel Dunbar
2010-01-13Predefine __weak attribute when doing objective-cFariborz Jahanian
2010-01-10Fix PR5982, a refacto in checking for '=' in a -D argument.Daniel Dunbar
2010-01-09Use MacroBuilder for TargetDefines instead of std::vector.Benjamin Kramer