Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This reverts commit 632a36bfcfc8273c1861f04ff6758d863c47c784. | Sylvestre Ledru | 2019-07-13 | 1 | -0/+1 |
| | | | | | | | | | | | | Some targets such as Python 2.7.16 still use VERSION in their builds. Without VERSION defined, the source code has syntax errors. Reverting as it will probably break many other things. Noticed by Sterling Augustine llvm-svn: 365992 | ||||
* | Remove __VERSION__ | Sylvestre Ledru | 2019-07-12 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | | | | | | Summary: It has been introduced in 2011 for gcc compat: https://github.com/llvm-mirror/clang/commit/ad1a4c6e89594e704775ddb6b036ac982fd68cad it is probably time to remove it Reviewers: rnk, dexonsmith Reviewed By: rnk Subscribers: dschuff, aheejin, fedor.sergeev, arphaman, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D64062 llvm-svn: 365962 | ||||
* | Tweak this non-default test so it still works w/ x86 feature support. | Daniel Dunbar | 2009-05-11 | 1 | -1/+6 |
| | | | | llvm-svn: 71494 | ||||
* | Update this (non-default) test case. | Daniel Dunbar | 2009-04-20 | 1 | -0/+1 |
| | | | | llvm-svn: 69636 | ||||
* | More fixes to builtin preprocessor defines. | Daniel Dunbar | 2009-04-08 | 1 | -0/+79 |
- Add -static-define option driver can use when __STATIC__ should be defined (instead of __DYNAMIC__). - Don't set __OPTIMIZE_SIZE__ on Os, __OPTIMIZE_SIZE__ is tied to Oz. - Set __NO_INLINE__ following GCC 4.2. - Set __GNU_GNU_INLINE__ or __GNU_STDC_INLINE__ following GCC 4.2. - Set __EXCEPTIONS for Objective-C NonFragile ABI. - Set __STRICT_ANSI__ for standard conforming modes. - I added a clang style test case in utils for this, but its not particularly portable and I don't think it belongs in the test suite. llvm-svn: 68621 |