Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Driver] Add aliases for -Qn/-Qy | Mikhail Maltsev | 2018-06-11 | 1 | -0/+4 |
| | | | | | | | | | This patch adds aliases for -Qn (-fno-ident) and -Qy (-fident) which look less cryptic than -Qn/-Qy. The aliases are compatible with GCC. Differential Revision: https://reviews.llvm.org/D48021 llvm-svn: 334414 | ||||
* | [CodeGen] Reland r330442: Add an option to suppress output of llvm.ident | Mikhail Maltsev | 2018-04-23 | 1 | -0/+19 |
| | | | | | | | The test case in the original patch was overly contrained and failed on PPC targets. llvm-svn: 330575 | ||||
* | Revert r330442, CodeGen/no-ident-version.c is failing on PPC | Mikhail Maltsev | 2018-04-20 | 1 | -19/+0 |
| | | | | llvm-svn: 330451 | ||||
* | [CodeGen] Add an option to suppress output of llvm.ident | Mikhail Maltsev | 2018-04-20 | 1 | -0/+19 |
Summary: By default Clang outputs its version (including git commit hash, in case of trunk builds) into object and assembly files. It might be useful to have an option to disable this, especially for debugging purposes. This patch implements new command line flags -Qn and -Qy (the names are chosen for compatibility with GCC). -Qn disables output of the 'llvm.ident' metadata string and the 'producer' debug info. -Qy (enabled by default) does the opposite. Reviewers: faisalv, echristo, aprantl Reviewed By: aprantl Subscribers: aprantl, cfe-commits, JDevlieghere, rogfer01 Differential Revision: https://reviews.llvm.org/D45255 llvm-svn: 330442 |