aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Support/Compiler.h
AgeCommit message (Expand)Author
2013-01-21Support/Compiler.h: MSC1600, aka VS2010, is not C++11-ready.NAKAMURA Takumi
2013-01-20[Support] Port ErrorOr<T> from lld to C++03.Michael J. Spencer
2013-01-16[Support] Update MSVC compiler support in Compiler.h.Michael J. Spencer
2013-01-15[Support] Add LLVM_CONSTEXPR.Michael J. Spencer
2013-01-11Add a new portability macro LLVM_FUNCTION_NAME, that expands to __func__, ifDmitri Gribenko
2013-01-03Compiler.h: Leave LLVM_BUILTIN_UNREACHABLE undefined if it is unavailable in ...NAKAMURA Takumi
2013-01-02Restrict __builtin_assume_aligned to gcc 4.7+Michael J. Spencer
2013-01-02[Support][Endian] Add support for specifying the alignment and native unalign...Michael J. Spencer
2012-11-30Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_REFERENCES.Chandler Carruth
2012-11-30Separate out the tests for whether the compiler suports R-valueChandler Carruth
2012-11-30Add a new C++11 compatibility macro, LLVM_LVALUE_FUNCTION.Jordan Rose
2012-11-25Add an extra slash so doxygen comments will be properly recognized.Craig Topper
2012-09-18Fix a typo. No functional change.Craig Topper
2012-09-16Add LLVM_OVERRIDE and LLVM_FINAL C++11 compatibility macros.Craig Topper
2012-09-04Make sure macros in the include subdirectory are not used without being defined.Bob Wilson
2012-08-29Explicitly cast an expression to bool before handing it off to __builtin_expect.Benjamin Kramer
2012-08-29Replace the BUILTIN_EXPECT macro with a less horrible LLVM_LIKELY/LLVM_UNLIKE...Benjamin Kramer
2012-08-21Provide a portability macro for __builtin_trap.David Blaikie
2012-08-15Add LLVM_DELETED_FUNCTION compatibility macro.Michael J. Spencer
2012-07-20Fix few warnings.Galina Kistanova
2012-05-07Fix trivial typo in llvm_move.John McCall
2012-05-02Update SmallVector to support move semantics if the host does.John McCall
2012-03-09[Support] Drop verbose _ATTRIBUTE from LLVM_ATTRIBUTE_{READONLY,READNONE} macroDaniel Dunbar
2011-11-15include/llvm/Support/Compiler.h: Invalidate LLVM_ATTRIBUTE_WEAK on cygming fo...NAKAMURA Takumi
2011-11-15Fix linking for some users who already have tsan enabled code and are trying toNick Lewycky
2011-11-01Support/Compiler: Add LLVM_EXTENSION for use where we want to hide pedantic d...Daniel Dunbar
2011-03-14Version N of the llvm_unreachable patch: VC++ doesn't recognize that abort()John McCall
2011-03-14Okay, some compilers complain if you provide the exception-specificationJohn McCall
2011-03-14Fix the exception-specification of abort() when declaring it in C++.John McCall
2011-03-14Make llvm_unreachable evaluate to __builtin_unreachable() in -AssertsJohn McCall
2010-12-17Support/Path: Deprecate PathV1::isAbsolute.Michael J. Spencer
2010-10-25Remove deprecated macro names. Hopefully this will unbreak theDuncan Sands
2010-10-23Move the remaining attribute macros to systematic names based on the attributeChandler Carruth
2010-10-23Switch attribute macros to use 'LLVM_' as a prefix. We retain the old namesChandler Carruth
2010-10-20Add a comment about ATTRIBUTE_UNUSED to avoid further confusion over when toChandler Carruth
2010-10-05Support: Add __forceinline to Compiler.h on MSVC.Michael J. Spencer
2010-09-15Remove LLVM_GLOBAL_VISIBILITY, which is unused, and was not working properly.Duncan Sands
2010-09-01Define LLVM_GLOBAL_VISIBILITY to be __declspec(dllexport) onDuncan Sands
2010-05-11I got tired of VISIBILITY_HIDDEN colliding with the gcc enum. Rename itDuncan Sands
2010-03-03don't use always_inline with gcc 3.4, it has some unimplemented featuresChris Lattner
2009-12-28Add an "ATTRIBUTE_UNUSED" macro (and use it). It's for variables which areBill Wendling
2009-12-15add an ALWAYS_INLINE macro, which does the obvious thing.Chris Lattner
2009-11-17Following a suggestion of Daniel Dunbar, stop people passing the nameDuncan Sands
2009-11-16Make ERROR_IF_USED macro work with GCC <= 4.2, Apple GCCsDouglas Gregor
2009-11-16Make sure that if anyone passes a name by accident for the isSignedDuncan Sands
2009-11-15add attributes for readnone/readonly functions.Chris Lattner
2009-11-14Implement DISABLE_INLINE for MSVC. This required changing the position in allBenjamin Kramer
2009-11-14Make NORETURN working with MSVC. MSVC only accepts NORETURN in front of theBenjamin Kramer
2009-09-17Use __attribute__((__used__)) if GCC >= 3.1 (seems to be the oldest GCCJulien Lerouge
2009-07-07Introduce new error handling API.Torok Edwin