- d062146 Add character set related __STDC_* definitions. by Ed Schouten · 12 years ago
- 4d6efbb Add a define for the ObjFW runtime ABI version. by Benjamin Kramer · 12 years ago
- 5a63792 Add new methods for TargetInfo: by Stepan Dyatkovskiy · 12 years ago
- 2afb63c Handle -D arguments ending in a backslash. by Eli Friedman · 12 years ago
- 0a71542 C++1y: Update __cplusplus to temporary value 201305L to allow detection of provisional C++1y support. by Richard Smith · 12 years ago
- c3c725a Define __SIZE_MAX__ preprocessor macro. by Evgeniy Stepanov · 13 years ago
- 48b72d8 [frontend] Don't put a PCH/PTH filename into the set of includes in the preprocessor options; by Argyrios Kyrtzidis · 13 years ago
- 1517128 Add -fopenmp -cc1 option and wire it up to define _OPENMP, from Alexey Bataev! by Douglas Gregor · 13 years ago
- 2bf7fdb s/CPlusPlus0x/CPlusPlus11/g by Richard Smith · 13 years ago
- 3a02247 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 13 years ago
- e6a56db Reject uses of __int128 on platforms that don't support it. Also move the ugly by Richard Smith · 13 years ago
- c6d2fdb Make __LDBL_MAX__ etc. have the correct type on targets where long double/double/etc. have the same format. PR14285. by Eli Friedman · 13 years ago
- e81699d Move PreprocessorOptions into the Lex library, and make it intrusively by Douglas Gregor · 13 years ago
- c2d984c Handle implicitly-included PCH files the same way as by Douglas Gregor · 13 years ago
- 460fe6b Add -std=c++1y argument, for *highly* experimental C++14 support. by Richard Smith · 13 years ago
- bdd74bf Don't emit double parentheses in __clang_version__. by Benjamin Kramer · 13 years ago
- 73bf7f5 Allow disabling of wchar_t type. by Abramo Bagnara · 13 years ago
- fb5d242 _HAS_CHAR16_T_LANGUAGE_SUPPORT is not predefined MSVC macro. by Francois Pichet · 13 years ago
- 3deb1ad Screw around with ObjCRuntime some more, changing the by John McCall · 13 years ago
- 8d48c8c Frontend: define _LP64 in a target-independent way by Dylan Noblesmith · 13 years ago
- c0cebed Frontend: further document __BYTE_ORDER__ by Dylan Noblesmith · 13 years ago
- 673728f Preprocessor: add __BYTE_ORDER__ predefined macro by Dylan Noblesmith · 13 years ago
- 6a03916 Define __FINITE_MATH_ONLY__ based on -ffast-math and -ffinite-math-only. by Bob Wilson · 13 years ago
- 5fb5df9 Restructure how the driver communicates information about the by John McCall · 13 years ago
- 9dcc032 Sink definition of IBOutlet, IBOutletCollection, and IBAction into by Ted Kremenek · 13 years ago
- 5d3fb22 Explicitly build __builtin_va_list. by Meador Inge · 13 years ago
- b9199ee More doxygen/documentation cleanups. by James Dennett · 13 years ago
- 222f278 Add a predefine __WINT_UNSIGNED__, similar to __WCHAR_UNSIGNED__, and test them both for ARM and X86. by James Molloy · 14 years ago
- d106a98 Use the standard values for the __cplusplus macro, even when in GNU mode. GCC by Richard Smith · 14 years ago
- 01ba47d Implement the missing pieces needed to support libstdc++4.7's <atomic>: by Richard Smith · 14 years ago
- c0c0455 Teach Clang about PIE compilations. This is the first step of PR12380. by Chandler Carruth · 14 years ago
- bbafb8a Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 14 years ago
- b448916 No longer defining GNUC mode when compiling for Microsoft compatibility. This allows people's cross-platform compiler-specific macros to work properly. by Aaron Ballman · 14 years ago
- 7b93f63 [Basic] Rename LangOptions::NoInline to NoInlineDefine, to make things a bit by Daniel Dunbar · 14 years ago
- 0867d9c Implement #pragma redefine_extname. by David Chisnall · 14 years ago
- 2c1dd27 Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 14 years ago
- fa35df6 Some improvements to the handling of C11 atomic types: by David Chisnall · 14 years ago
- ad01b31 Add a "Modules" language option, which subsumes the previous by Douglas Gregor · 14 years ago
- 3a5ff5c Teach the frontend to provide the builtin preprocessor defines for -ffast-math. by Chandler Carruth · 14 years ago
- cf50147 Add a target hook for FLT_EVAL_METHOD and use it to set the value on x86 with sse disabled. by Benjamin Kramer · 14 years ago
- 3c6982b Give C11's __STDC_VERSION__ the final value. by Benjamin Kramer · 14 years ago
- e56f393 Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" so this patch is surprisingly small. by Benjamin Kramer · 14 years ago
- b0ffe50 Move a free function from the Frontend library into the Lex library as by Chandler Carruth · 14 years ago
- 2c4542d Give __STDC_VERSION__ the value 201001L when we're in C1x mode. The by Douglas Gregor · 14 years ago
- 7bba3ef Define __STDC__ in -fms-extensions mode; defining it is consistent with gcc, and not defining it causes the system headers on multiple platforms to break with -fms-extensions because they assume the lack of a definition of __STDC__ implies a traditional (pre-ANSI) preprocessor. PR10324 and <rdar://problem/10313809> . by Eli Friedman · 14 years ago
- eaed8d57 Remove the egregious hack that made Objective-C++ ARC work with older by Douglas Gregor · 14 years ago
- 9c902b5 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 14 years ago
- 5507159 Remove __WCHAR_UNSIGNED__ and anything that used it. by Eric Christopher · 14 years ago
- 0706d20 Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. by Francois Pichet · 14 years ago
- 97eec24 Add an experimental flag -fauto-module-import that automatically turns by Douglas Gregor · 14 years ago
- 79a9141 Switch LangOptions over to a .def file that describes header of the by Douglas Gregor · 14 years ago
- b63ab94 Only predefine the __EXCEPTIONS macro if C++ exceptions are turned on. by Douglas Gregor · 14 years ago
- 0e62c1c remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
- 8cb46bb Implement a __WCHAR_UNSIGNED__ macro and use it to include WCHAR_MIN and by Alexis Hunt · 14 years ago
- 24fc0de Change the driver's logic about Objective-C runtimes: abstract out a by John McCall · 14 years ago
- bf3eec6 Don't define __CONSTANT_CFSTRINGS__ with -fno-constant-cfstrings issue. by Fariborz Jahanian · 14 years ago
- cff00d9 Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about 'ownership', not 'lifetime'. by Argyrios Kyrtzidis · 14 years ago
- 10c1d26 Define __cplusplus to 201103L when in (non-GNU) C++0x mode. by Douglas Gregor · 14 years ago
- 5d36a8c Unconditionally #define the ARC ownership qualifiers, instead of #defining by John McCall · 14 years ago
- 31168b0 Automatic Reference Counting. by John McCall · 14 years ago
- cd4cfb3 __OBJC__ is also a standard predefined macro. by Nick Lewycky · 14 years ago
- a682033 The macros defined by the language standard are still available even when the by Nick Lewycky · 14 years ago
- 16c9491 Add a FIXME. by Francois Pichet · 14 years ago
- 61d818c Temporary preprocessor hack to get around the Microsoft __identifier(x) extension. by Francois Pichet · 15 years ago
- 84133e4 Upgrade Microsoft's __int8, __int16, __int32 and __int64 types from builtin defines to real types. by Francois Pichet · 15 years ago
- 30483fb Move all of the logic for __DEPRECATED to the driver based on comments by Chandler Carruth · 15 years ago
- 61fbf62 Fix Clang's __DEPRECATED define to be controled by -Wdeprecated. This by Chandler Carruth · 15 years ago
- 4547752 PR9772: Fix the definition of WINT_MIN and WINT_MAX on Linux -ffreestanding. by Eli Friedman · 15 years ago
- 3b17a86 Change Clang's __VERSION__ to include the same basic info as in clang -v. by Daniel Dunbar · 15 years ago
- 5366ff1 Preprocessor: Don't define __STDC__ in -traditional-cpp mode. by Daniel Dunbar · 15 years ago
- 97d3a38 Add 'OverridenFilesKeepOriginalName' field in SourceManager which if true the SourceManager by Argyrios Kyrtzidis · 15 years ago
- d767a03 Reimplement DefineTypeSize in terms of APInt. This eliminates some by Chris Lattner · 15 years ago
- 3607989 Preserve what the user passed to -include when emitting .d files. Fixes PR8974! by Nick Lewycky · 15 years ago
- 740857f Replace all uses of PathV1::makeAbsolute with PathV2::fs::make_absolute. by Michael J. Spencer · 15 years ago
- 61d6a75 Implement -cl-fast-relaxed-math by Peter Collingbourne · 15 years ago
- 8aaf499 Merge System into Support. by Michael J. Spencer · 15 years ago
- 5159f61 now the FileManager has a FileSystemOpts ivar, stop threading by Chris Lattner · 15 years ago
- 71731d6 Implement -working-directory. by Argyrios Kyrtzidis · 15 years ago
- 2ba828f Tell the VS headers that char16_t and char32_t are keywords, so yvals.h doesn't try to define them as typedefs. by Steven Watanabe · 15 years ago
- a5a5f47 First test commit by Francois Pichet. _CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES is not a predefined macro, remove it. by Francois Pichet · 15 years ago
- 2b1bbec Predeclare class type_info in Microsoft mode, from Francois Pichet! by Douglas Gregor · 15 years ago
- 1d9c76d6 Fix typo in comment. by Michael J. Spencer · 15 years ago
- 865afc9 PR7795: Fix the definition of __WCHAR_MAX__ with -fshort-wchar. by Eli Friedman · 15 years ago
- 278008f fix some undefined behavior, PR7779. by Chris Lattner · 15 years ago
- 3f4bea0 Introduce basic support for loading a precompiled preamble while by Douglas Gregor · 15 years ago
- be2d8c6 Basic plumbing for generating a precompiled preamble for an by Douglas Gregor · 15 years ago
- 120a1e9 Headers: Define __INT64_TYPE__ in terms of getInt64Type(), which isn't always by Daniel Dunbar · 15 years ago
- e60d304 Remove state assertion. by Ted Kremenek · 15 years ago
- ea78375 Don't crash in InitializePreprocessor() when there is no valid PTHManager. Fixes <rdar://problem/8098441>. by Ted Kremenek · 15 years ago
- ca10da8 Remove HAS_TLS define. by Eric Christopher · 15 years ago
- 03256c3 More clang support for darwin tls. Add a __has_feature macro and by Eric Christopher · 15 years ago
- 04f8720 Add several more predefines from modern versions of GCC. by Dan Gohman · 15 years ago
- 34ddec6 Predefine the '__clang_analyzer__' macro when using '-analyze'. by Ted Kremenek · 15 years ago
- 6602c25 Add Clang version inspection macros. Fixes PR6681. by Douglas Gregor · 16 years ago
- 678eaa9 fix PR6936: don't generate line marker directives when preprocessing by Chris Lattner · 16 years ago
- 3ecc665 Sink the _GNU_SOURCE definition down into the target configuration, by Douglas Gregor · 16 years ago
- d2b896a Only predefine the macro _GNU_SOURCE in C++ mode when we're on a by Douglas Gregor · 16 years ago
- 89a56c5 When given unsaved files in clang_createTranslationUnitFromSourceFile, by Douglas Gregor · 16 years ago
- 3241d40 Switch to using -fsjlj-exceptions instead of hard-coding it. Notably, this fixes by Daniel Dunbar · 16 years ago
- aa98ed9 Extend clang_createTranslationUnitFromSourceFile() to support creating by Douglas Gregor · 16 years ago