Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Driver] Verify -mrecord-mcount in Driver, instead of CodeGen after D71627 | Fangrui Song | 2019-12-21 | 1 | -3/+0 |
| | | | | | | | | | | | GCC's x86 and s390 ports support -mrecord-mcount. Other ports reject the option. aarch64-linux-gnu-gcc: error: unrecognized command line option ‘-mrecord-mcount’ Allowing this option can cause failures when building Linux kernel for aarch64, powerpc64, etc, which will think the feature is available if the clang command returns 0. | ||||
* | [Clang FE, SystemZ] Recognize -mrecord-mcount CL option. | Jonas Paulsson | 2019-12-19 | 1 | -0/+26 |
Recognize -mrecord-mcount from the command line and add a function attribute "mrecord-mcount" when passed. Only valid on SystemZ (when used with -mfentry). Review: Ulrich Weigand https://reviews.llvm.org/D71627 |