Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [clang-cl] Alias /Zc:alignedNew[-] to -f[no-]aligned-allocation | Reid Kleckner | 2019-01-15 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | Implements PR40180. clang-cl has one minor behavior difference with cl with this change. Clang allows the user to enable the C++17 feature of aligned allocation without enabling all of C++17, but MSVC will not call the aligned allocation overloads unless -std:c++17 is passed. While our behavior is technically incompatible, it would require making driver mode specific changes to match MSVC precisely, and clang's behavior is useful because it allows people to experiment with new C++17 features individually. Therefore, I plan to leave it as is. llvm-svn: 351249 | ||||
* | [clang-cl] Ignore /Zc:ternary, clang behaves this way already | Reid Kleckner | 2017-05-31 | 1 | -0/+5 |
| | | | | | | Addresses part of PR33237 llvm-svn: 304303 | ||||
* | Erase REQUIRES: shell-preserves-root from remaining tests, see r242312.รพ | Yaron Keren | 2015-07-15 | 1 | -3/+0 |
| | | | | llvm-svn: 242323 | ||||
* | [MS ABI] Add support for /Zc:sizedDealloc | David Majnemer | 2015-05-14 | 1 | -0/+6 |
| | | | | llvm-svn: 237344 | ||||
* | clang-cl: Various changes to /Zc: handling. | Nico Weber | 2014-12-23 | 1 | -0/+59 |
* /Zc:trigraphs and /Zc:trigraphs- are now honored * /Zc:strictStrings is now honored * /Zc:auto is now honored/ignored (clang does the Right Thing for this already) Also add a dedicated test for the various /Zc: flags. clang-cl doesn't always agree with cl.exe on the default values for /Zc flags. For example, I think clang always behaves as if /Zc:inline is passed, and warns if the user explicitly passes /Zc:inline- Fixes PR21974. llvm-svn: 224791 |