Age | Commit message (Expand) | Author |
2013-03-28 | Define __SIZE_MAX__ preprocessor macro. | Evgeniy Stepanov |
2013-02-05 | [frontend] Don't put a PCH/PTH filename into the set of includes in the prepr... | Argyrios Kyrtzidis |
2013-01-15 | Add -fopenmp -cc1 option and wire it up to define _OPENMP, from Alexey Bataev! | Douglas Gregor |
2013-01-02 | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-11-29 | Reject uses of __int128 on platforms that don't support it. Also move the ugly | Richard Smith |
2012-11-10 | Make __LDBL_MAX__ etc. have the correct type on targets where long double/dou... | Eli Friedman |
2012-10-24 | Move PreprocessorOptions into the Lex library, and make it intrusively | Douglas Gregor |
2012-10-22 | Handle implicitly-included PCH files the same way as | Douglas Gregor |
2012-10-17 | Add -std=c++1y argument, for *highly* experimental C++14 support. | Richard Smith |
2012-10-08 | Don't emit double parentheses in __clang_version__. | Benjamin Kramer |
2012-09-05 | Allow disabling of wchar_t type. | Abramo Bagnara |
2012-08-25 | _HAS_CHAR16_T_LANGUAGE_SUPPORT is not predefined MSVC macro. | Francois Pichet |
2012-08-21 | Screw around with ObjCRuntime some more, changing the | John McCall |
2012-08-10 | Frontend: define _LP64 in a target-independent way | Dylan Noblesmith |
2012-08-08 | Frontend: further document __BYTE_ORDER__ | Dylan Noblesmith |
2012-07-27 | Preprocessor: add __BYTE_ORDER__ predefined macro | Dylan Noblesmith |
2012-07-19 | Define __FINITE_MATH_ONLY__ based on -ffast-math and -ffinite-math-only. | Bob Wilson |
2012-06-20 | Restructure how the driver communicates information about the | John McCall |
2012-06-19 | Sink definition of IBOutlet, IBOutletCollection, and IBAction into | Ted Kremenek |
2012-06-16 | Explicitly build __builtin_va_list. | Meador Inge |
2012-06-13 | More doxygen/documentation cleanups. | James Dennett |
2012-05-04 | Add a predefine __WINT_UNSIGNED__, similar to __WCHAR_UNSIGNED__, and test th... | James Molloy |
2012-05-03 | Use the standard values for the __cplusplus macro, even when in GNU mode. GCC | Richard Smith |
2012-04-13 | Implement the missing pieces needed to support libstdc++4.7's <atomic>: | Richard Smith |
2012-04-08 | Teach Clang about PIE compilations. This is the first step of PR12380. | Chandler Carruth |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-10 | No longer defining GNUC mode when compiling for Microsoft compatibility. Thi... | Aaron Ballman |
2012-03-09 | [Basic] Rename LangOptions::NoInline to NoInlineDefine, to make things a bit | Daniel Dunbar |
2012-02-18 | Implement #pragma redefine_extname. | David Chisnall |
2012-02-05 | Basic: import SmallString<> into clang namespace | Dylan Noblesmith |
2012-01-16 | Some improvements to the handling of C11 atomic types: | David Chisnall |
2012-01-03 | Add a "Modules" language option, which subsumes the previous | Douglas Gregor |
2012-01-03 | Teach the frontend to provide the builtin preprocessor defines for | Chandler Carruth |
2011-12-28 | Add a target hook for FLT_EVAL_METHOD and use it to set the value on x86 with... | Benjamin Kramer |
2011-12-23 | Give C11's __STDC_VERSION__ the final value. | Benjamin Kramer |
2011-12-23 | Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ... | Benjamin Kramer |
2011-12-09 | Move a free function from the Frontend library into the Lex library as | Chandler Carruth |
2011-10-28 | Give __STDC_VERSION__ the value 201001L when we're in C1x mode. The | Douglas Gregor |
2011-10-19 | Define __STDC__ in -fms-extensions mode; defining it is consistent with gcc, ... | Eli Friedman |
2011-09-27 | Remove the egregious hack that made Objective-C++ ARC work with older | Douglas Gregor |
2011-09-25 | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie |
2011-09-20 | Remove __WCHAR_UNSIGNED__ and anything that used it. | Eric Christopher |
2011-09-17 | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet |
2011-09-15 | Add an experimental flag -fauto-module-import that automatically turns | Douglas Gregor |
2011-09-13 | Switch LangOptions over to a .def file that describes header of the | Douglas Gregor |
2011-09-12 | Only predefine the __EXCEPTIONS macro if C++ exceptions are turned on. | Douglas Gregor |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-07-19 | Implement a __WCHAR_UNSIGNED__ macro and use it to include WCHAR_MIN and | Sean Hunt |
2011-07-06 | Change the driver's logic about Objective-C runtimes: abstract out a | John McCall |