|
Revision tags: llvmorg-18.1.8, llvmorg-18.1.7, llvmorg-18.1.6, llvmorg-18.1.5, llvmorg-18.1.4, llvmorg-18.1.3, llvmorg-18.1.2, llvmorg-18.1.1, llvmorg-18.1.0, llvmorg-18.1.0-rc4, llvmorg-18.1.0-rc3, llvmorg-18.1.0-rc2, llvmorg-18.1.0-rc1, llvmorg-19-init, llvmorg-17.0.6, llvmorg-17.0.5, llvmorg-17.0.4, llvmorg-17.0.3, llvmorg-17.0.2, llvmorg-17.0.1, llvmorg-17.0.0, llvmorg-17.0.0-rc4 |
|
| #
ef5217b3 |
| 05-Sep-2023 |
Takuya Shimizu <shimizu2486@gmail.com> |
[clang][Diagnostics] Fix wrong line number display (#65238)
When the caret location is lower than the lowest source range, clang is
printing wrong line numbers. The first line number should conside
[clang][Diagnostics] Fix wrong line number display (#65238)
When the caret location is lower than the lowest source range, clang is
printing wrong line numbers. The first line number should consider caret
location line even when there are source ranges provided.
Current wrong line example: https://godbolt.org/z/aj4qEjzs4
show more ...
|
|
Revision tags: llvmorg-17.0.0-rc3, llvmorg-17.0.0-rc2, llvmorg-17.0.0-rc1, llvmorg-18-init |
|
| #
8554a55d |
| 27-Jun-2023 |
Timm Bäder <tbaeder@redhat.com> |
[clang][Diagnostics] Fix diagnostic line numbers
The first line of the code snippet we print is potentially lower than the caret line, so handle that case.
Fixes #63524
Differential Revision: http
[clang][Diagnostics] Fix diagnostic line numbers
The first line of the code snippet we print is potentially lower than the caret line, so handle that case.
Fixes #63524
Differential Revision: https://reviews.llvm.org/D153849
show more ...
|
|
Revision tags: llvmorg-16.0.6, llvmorg-16.0.5 |
|
| #
3184fb95 |
| 24-May-2023 |
Timm Bäder <tbaeder@redhat.com> |
[clang][Diagnostics] Print empty lines in multiline snippets
We should preserve empty lines in output snippets.
Differential Revision: https://reviews.llvm.org/D151301
|