Author: Kirill Bobyrev
Date: 2020-04-24T14:27:39+02:00
New Revision: 9774c34a84e336968f276591c200bd955631c5be
URL:
https://github.com/llvm/llvm-project/commit/9774c34a84e336968f276591c200bd955631c5be
DIFF:
https://github.com/llvm/llvm-project/commit/9774c34a84e336968f276591c200bd955631c5be.diff
Author: Kirill Bobyrev
Date: 2020-04-28T19:16:37+02:00
New Revision: 9ff3f339e881b65217272cb11714493d0e5f1c70
URL:
https://github.com/llvm/llvm-project/commit/9ff3f339e881b65217272cb11714493d0e5f1c70
DIFF:
https://github.com/llvm/llvm-project/commit/9ff3f339e881b65217272cb11714493d0e5f1c70.diff
Author: Kirill Bobyrev
Date: 2020-04-29T17:01:03+02:00
New Revision: 4645ef17ff1aa30e1890b7c8230b590ef830081b
URL:
https://github.com/llvm/llvm-project/commit/4645ef17ff1aa30e1890b7c8230b590ef830081b
DIFF:
https://github.com/llvm/llvm-project/commit/4645ef17ff1aa30e1890b7c8230b590ef830081b.diff
Author: Kirill Bobyrev
Date: 2020-07-31T11:48:32+02:00
New Revision: fb5588b0ad59522031d037b0d1a3fdcf8ada8a79
URL:
https://github.com/llvm/llvm-project/commit/fb5588b0ad59522031d037b0d1a3fdcf8ada8a79
DIFF:
https://github.com/llvm/llvm-project/commit/fb5588b0ad59522031d037b0d1a3fdcf8ada8a79.diff
Author: Kirill Bobyrev
Date: 2020-08-09T22:12:56+02:00
New Revision: 836f937a1f1150d81c0bf2b6a14872146da5b89e
URL:
https://github.com/llvm/llvm-project/commit/836f937a1f1150d81c0bf2b6a14872146da5b89e
DIFF:
https://github.com/llvm/llvm-project/commit/836f937a1f1150d81c0bf2b6a14872146da5b89e.diff
Author: Kirill Bobyrev
Date: 2020-08-11T09:50:33+02:00
New Revision: c6d2078a35d536c8fa152fa9205924f8f10cbaac
URL:
https://github.com/llvm/llvm-project/commit/c6d2078a35d536c8fa152fa9205924f8f10cbaac
DIFF:
https://github.com/llvm/llvm-project/commit/c6d2078a35d536c8fa152fa9205924f8f10cbaac.diff
Author: Kirill Bobyrev
Date: 2020-08-11T13:24:43+02:00
New Revision: bd1013a4825bf2cf58b3c75320f64b24b244f343
URL:
https://github.com/llvm/llvm-project/commit/bd1013a4825bf2cf58b3c75320f64b24b244f343
DIFF:
https://github.com/llvm/llvm-project/commit/bd1013a4825bf2cf58b3c75320f64b24b244f343.diff
Author: Kirill Bobyrev
Date: 2020-05-05T11:46:28+02:00
New Revision: 07f8ca6ab19b853436e554ebb6a1888cafbda16b
URL:
https://github.com/llvm/llvm-project/commit/07f8ca6ab19b853436e554ebb6a1888cafbda16b
DIFF:
https://github.com/llvm/llvm-project/commit/07f8ca6ab19b853436e554ebb6a1888cafbda16b.diff
Author: Kirill Bobyrev
Date: 2020-05-08T11:04:52+02:00
New Revision: 9c198b550ebbff27499d9b68a8bbac98c4827da1
URL:
https://github.com/llvm/llvm-project/commit/9c198b550ebbff27499d9b68a8bbac98c4827da1
DIFF:
https://github.com/llvm/llvm-project/commit/9c198b550ebbff27499d9b68a8bbac98c4827da1.diff
Author: Kirill Bobyrev
Date: 2020-05-18T12:21:27+02:00
New Revision: 968d293063bc008ff93ff8fcf363039ce61574a2
URL:
https://github.com/llvm/llvm-project/commit/968d293063bc008ff93ff8fcf363039ce61574a2
DIFF:
https://github.com/llvm/llvm-project/commit/968d293063bc008ff93ff8fcf363039ce61574a2.diff
Author: Kirill Bobyrev
Date: 2020-05-19T17:07:38+02:00
New Revision: c6b2b784299b5b8c2081b4e7e76eeab80e9b81ee
URL:
https://github.com/llvm/llvm-project/commit/c6b2b784299b5b8c2081b4e7e76eeab80e9b81ee
DIFF:
https://github.com/llvm/llvm-project/commit/c6b2b784299b5b8c2081b4e7e76eeab80e9b81ee.diff
omtcyfz updated this revision to Diff 71776.
omtcyfz added a comment.
Herald added a subscriber: mgorny.
The diff doesn't really do much right now, but it kind of gives the idea of
what's happening with clang-refactor.
https://reviews.llvm.org/D24192
Files:
CMakeLists.txt
clang-refactor/CM
omtcyfz accepted this revision.
omtcyfz added a comment.
This revision is now accepted and ready to land.
Sorry for a late response.
Yes, this solution is way better. Honestly I just didn't know how to achieve
that; not a Vim pro here :)
Thank you very much!
LGTM.
https://reviews.llvm.org/D2
omtcyfz added a comment.
@NewProggie do you have commit access or do you want me to land this patch for
you?
https://reviews.llvm.org/D24791
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-
omtcyfz created this revision.
omtcyfz added reviewers: alexfh, klimek, ioeric.
omtcyfz added subscribers: cfe-commits, Eugene.Zelenko.
This patch extends clang-tidy's readability-redundant-smartptr-get to produce
warnings for previously unsupported cases:
```
std::unique_ptr ptr;
if (ptr.get())
omtcyfz updated this revision to Diff 72422.
omtcyfz marked an inline comment as done.
omtcyfz added a comment.
Replace `anyOf(hasName("..."), hasName("..."))` with `hasAnyName("...", "...")`.
https://reviews.llvm.org/D24893
Files:
clang-tidy/readability/RedundantSmartptrGetCheck.cpp
test/c
omtcyfz added a comment.
In https://reviews.llvm.org/D24893#551914, @alexfh wrote:
> Still LG.
Thank you! Landing the patch.
https://reviews.llvm.org/D24893
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mai
Author: omtcyfz
Date: Mon Sep 26 01:22:54 2016
New Revision: 282382
URL: http://llvm.org/viewvc/llvm-project?rev=282382&view=rev
Log:
[clang-tidy] make readability-redundant-smartptr-get report get() usage in
conditions
This patch extends clang-tidy's readability-redundant-smartptr-get to produc
Author: omtcyfz
Date: Mon Sep 26 01:33:58 2016
New Revision: 282384
URL: http://llvm.org/viewvc/llvm-project?rev=282384&view=rev
Log:
Revert r282382; it had no reference to Revision.
Modified:
clang-tools-extra/trunk/clang-tidy/readability/RedundantSmartptrGetCheck.cpp
clang-tools-extra/
Author: omtcyfz
Date: Mon Sep 26 02:22:37 2016
New Revision: 282386
URL: http://llvm.org/viewvc/llvm-project?rev=282386&view=rev
Log:
[clang-tidy] make readability-redundant-smartptr-get report get() usage in
conditions
This patch extends clang-tidy's readability-redundant-smartptr-get to produc
This revision was automatically updated to reflect the committed changes.
Closed by commit rL282386: [clang-tidy] make readability-redundant-smartptr-get
report get() usage in… (authored by omtcyfz).
Changed prior to commit:
https://reviews.llvm.org/D24893?vs=72422&id=72442#toc
Repository:
r
Author: omtcyfz
Date: Mon Sep 26 02:26:32 2016
New Revision: 282388
URL: http://llvm.org/viewvc/llvm-project?rev=282388&view=rev
Log:
[clang-rename] Use checktime when reloading vim buffer after applying
clang-rename
After applying `clang-rename` to a vim buffer (using `clang-rename.py` as part
This revision was automatically updated to reflect the committed changes.
Closed by commit rL282388: [clang-rename] Use checktime when reloading vim
buffer after applying clang… (authored by omtcyfz).
Changed prior to commit:
https://reviews.llvm.org/D24791?vs=72011&id=72443#toc
Repository:
omtcyfz created this revision.
omtcyfz added a reviewer: alexfh.
omtcyfz added a subscriber: cfe-commits.
`clang-rename` might sometimes have multiple replacements at one
SourceLocation, both trying to perform the same renaming. While this issue
should be addressed properly at some point, for no
omtcyfz updated this revision to Diff 72511.
omtcyfz marked 2 inline comments as done.
omtcyfz added a comment.
Address two comments.
https://reviews.llvm.org/D24914
Files:
clang-rename/RenamingAction.cpp
Index: clang-rename/RenamingAction.cpp
omtcyfz added a comment.
@arphaman, thank you for the comments! Improved the wording.
https://reviews.llvm.org/D24914
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
omtcyfz updated this revision to Diff 72604.
omtcyfz marked 2 inline comments as done.
omtcyfz added a comment.
Address two comments from Alex.
https://reviews.llvm.org/D24914
Files:
clang-rename/RenamingAction.cpp
Index: clang-rename/RenamingAction.cpp
==
omtcyfz added inline comments.
Comment at: clang-rename/RenamingAction.cpp:74
@@ +73,3 @@
+ // FIXME: As for clang-rename, adding a replacement fails IFF either the
+ // AST node has been matched multiple times (which shouldn't happen in
+ // reality, need to fix th
omtcyfz added inline comments.
Comment at: clang-rename/RenamingAction.cpp:74
@@ +73,3 @@
+ // FIXME: As for clang-rename, adding a replacement fails IFF either the
+ // AST node has been matched multiple times (which shouldn't happen in
+ // reality, need to fix th
omtcyfz updated this revision to Diff 72616.
omtcyfz added a comment.
Slightly change wording.
https://reviews.llvm.org/D24914
Files:
clang-rename/RenamingAction.cpp
Index: clang-rename/RenamingAction.cpp
===
--- clang-rename/Re
omtcyfz added inline comments.
Comment at: clang-rename/RenamingAction.cpp:74
@@ +73,3 @@
+ // FIXME: An error might happen here if USRLocFinder finds the symbol
+ // twice or if the symbol happens to be in a header included multiple
+ // times independently. Such e
omtcyfz abandoned this revision.
omtcyfz added a comment.
Abandoning this, because https://reviews.llvm.org/rL282577, which introduces
replacement deduplication, eliminates this issue. Big thanks to Eric!
https://reviews.llvm.org/D24914
___
cfe-com
omtcyfz created this revision.
omtcyfz added reviewers: alexfh, ioeric, bkramer.
omtcyfz added subscribers: cfe-commits, aaron.ballman.
`add_new_check.py` didn't support Python 3.X for some reason, even though it
used `print` in Python 3.X-compatible way. With just a few tweaks
`add_new_check.py
omtcyfz created this revision.
omtcyfz added reviewers: alexfh, aaron.ballman, ioeric.
omtcyfz added a subscriber: cfe-commits.
Herald added subscribers: mgorny, beanz, nemanjai.
C++ Core Guidelines Section "Expressions and statements" Suggestion 10 proposes
to split declarations with multiple na
omtcyfz updated this revision to Diff 72881.
omtcyfz marked an inline comment as done.
omtcyfz added a comment.
Address couple comments.
https://reviews.llvm.org/D25024
Files:
clang-tidy/cppcoreguidelines/CMakeLists.txt
clang-tidy/cppcoreguidelines/CppCoreGuidelinesTidyModule.cpp
clang-ti
omtcyfz added inline comments.
Comment at: clang-tidy/cppcoreguidelines/OneNamePerDeclarationCheck.cpp:26
@@ +25,3 @@
+
+} // end anonymous namespace
+
Eugene.Zelenko wrote:
> Namespace is inconsistent with following ones. It I'm not mistaken, **//
> namespace**
omtcyfz created this revision.
omtcyfz added reviewers: ClockMan, ioeric, aaron.ballman.
omtcyfz added a subscriber: cfe-commits.
Start using `argparse` instead of mimicking CLI parsing.
PEPify the code.
https://reviews.llvm.org/D25074
Files:
clang-tidy/rename_check.py
Index: clang-tidy/ren
omtcyfz updated this revision to Diff 73018.
omtcyfz marked an inline comment as done.
omtcyfz added a comment.
Remove leftover from debugging.
https://reviews.llvm.org/D25074
Files:
clang-tidy/rename_check.py
Index: clang-tidy/rename_check.py
omtcyfz updated this revision to Diff 73025.
omtcyfz marked an inline comment as done.
omtcyfz added a comment.
Minor improvements.
https://reviews.llvm.org/D25024
Files:
clang-tidy/cppcoreguidelines/CMakeLists.txt
clang-tidy/cppcoreguidelines/CppCoreGuidelinesTidyModule.cpp
clang-tidy/cp
omtcyfz added inline comments.
> omtcyfz wrote in OneNamePerDeclarationCheck.cpp:30
> Sure it can. I just thought `declCountIsGreaterThan` might be useful at some
> point.
Actually, for the sake of simplicity I'll use `unless(declCountIs(1))`, when
some other part of code would need similar st
omtcyfz added inline comments.
> alexshap wrote in rename_check.py:81
> the script always prints the args, is it intentional ?
Aw, a leftover from debugging.
Good catch! Thanks for the note!
https://reviews.llvm.org/D25074
___
cfe-commits mailing
omtcyfz added inline comments.
> bkramer wrote in add_new_check.py:16
> Can we rely on six being available? It's not part of the default python
> installation afaik.
Yes, I am pretty sure about that. Absolute majority of Python projects relies
on having six available and Python installation wi
omtcyfz added a comment.
UPD: This patch is eventually causing some problems in Python 3. Working on
that.
https://reviews.llvm.org/D25019
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-co
omtcyfz added a comment.
In https://reviews.llvm.org/D25024#557033, @ioeric wrote:
> The code looks about right, but I am not the right person to decide whether
> checks go into clang-tidy.
Okay, thank you!
https://reviews.llvm.org/D25024
___
cf
Author: omtcyfz
Date: Sun Oct 2 09:51:33 2016
New Revision: 283067
URL: http://llvm.org/viewvc/llvm-project?rev=283067&view=rev
Log:
[clang-rename] Overhaul clang-rename.el.
* Use lexical binding, as recommended for new libraries.
* Fix customization variable (set correct group and type).
* Crea
omtcyfz updated this revision to Diff 74509.
omtcyfz marked 5 inline comments as done.
omtcyfz added a comment.
Herald added a subscriber: modocache.
Addressed bunch of comments.
https://reviews.llvm.org/D25024
Files:
clang-tidy/cert/CERTTidyModule.cpp
clang-tidy/cert/CMakeLists.txt
clang
omtcyfz added inline comments.
Comment at: clang-tidy/cppcoreguidelines/OneNamePerDeclarationCheck.cpp:38
+ diag(MultipleNameDeclaration->getStartLoc(),
+ "Do not declare multiple names per declaration");
+}
aaron.ballman wrote:
> Diagnostics do not start
kirillbobyrev wrote:
Thanks!
As a side note: I did work on `clang/tools/clang-rename/clang-rename.el` in the
past, but `clang-rename` isn't used much these days and, arguably, is
superseded by `clangd` + LSP in most cases. I don't know if anyone still uses
`clang-rename.el` (I know there was
Author: Kirill Bobyrev
Date: 2022-03-31T12:49:52+02:00
New Revision: 4cb38bfe76b7ef157485338623c931d04d17b958
URL:
https://github.com/llvm/llvm-project/commit/4cb38bfe76b7ef157485338623c931d04d17b958
DIFF:
https://github.com/llvm/llvm-project/commit/4cb38bfe76b7ef157485338623c931d04d17b958.diff
Author: Kirill Bobyrev
Date: 2022-03-31T17:59:52+02:00
New Revision: f43c4c5be29b4111bb953371b8ca83a4511fb1c1
URL:
https://github.com/llvm/llvm-project/commit/f43c4c5be29b4111bb953371b8ca83a4511fb1c1
DIFF:
https://github.com/llvm/llvm-project/commit/f43c4c5be29b4111bb953371b8ca83a4511fb1c1.diff
Author: Kirill Bobyrev
Date: 2022-04-05T16:27:54+02:00
New Revision: 3de4d5e6dd66165057439c69b6a03e7001ec03e0
URL:
https://github.com/llvm/llvm-project/commit/3de4d5e6dd66165057439c69b6a03e7001ec03e0
DIFF:
https://github.com/llvm/llvm-project/commit/3de4d5e6dd66165057439c69b6a03e7001ec03e0.diff
Author: Kirill Bobyrev
Date: 2022-04-05T16:57:39+02:00
New Revision: 012e90bb2483888d113368b69933aec0ab6a5041
URL:
https://github.com/llvm/llvm-project/commit/012e90bb2483888d113368b69933aec0ab6a5041
DIFF:
https://github.com/llvm/llvm-project/commit/012e90bb2483888d113368b69933aec0ab6a5041.diff
Author: Kirill Bobyrev
Date: 2022-04-05T18:21:24+02:00
New Revision: 211df7319af4d97b11f59fbc88bfb7ca27eab785
URL:
https://github.com/llvm/llvm-project/commit/211df7319af4d97b11f59fbc88bfb7ca27eab785
DIFF:
https://github.com/llvm/llvm-project/commit/211df7319af4d97b11f59fbc88bfb7ca27eab785.diff
Author: Kirill Bobyrev
Date: 2021-07-21T14:51:16+02:00
New Revision: 907efdf95da567c314e2c9b9df67187756eed5ca
URL:
https://github.com/llvm/llvm-project/commit/907efdf95da567c314e2c9b9df67187756eed5ca
DIFF:
https://github.com/llvm/llvm-project/commit/907efdf95da567c314e2c9b9df67187756eed5ca.diff
Author: Kirill Bobyrev
Date: 2021-07-23T15:28:35+02:00
New Revision: a0987e350ccce4fb9c3cbaf56732be1def5f810f
URL:
https://github.com/llvm/llvm-project/commit/a0987e350ccce4fb9c3cbaf56732be1def5f810f
DIFF:
https://github.com/llvm/llvm-project/commit/a0987e350ccce4fb9c3cbaf56732be1def5f810f.diff
Author: Kirill Bobyrev
Date: 2021-07-29T11:37:10+02:00
New Revision: d8fd2146daaa28d118fd7c29d63e817a8c955b81
URL:
https://github.com/llvm/llvm-project/commit/d8fd2146daaa28d118fd7c29d63e817a8c955b81
DIFF:
https://github.com/llvm/llvm-project/commit/d8fd2146daaa28d118fd7c29d63e817a8c955b81.diff
Author: Kirill Bobyrev
Date: 2022-04-07T12:56:56+02:00
New Revision: be572e1e1d297039129b0c4ff2deffd817e42f30
URL:
https://github.com/llvm/llvm-project/commit/be572e1e1d297039129b0c4ff2deffd817e42f30
DIFF:
https://github.com/llvm/llvm-project/commit/be572e1e1d297039129b0c4ff2deffd817e42f30.diff
@sammccall ping
On Tue, Apr 12, 2022 at 4:39 PM Kirill Bobyrev via Phabricator <
revi...@reviews.llvm.org> wrote:
> kbobyrev added a comment.
>
> Oops, sorry, I linked the wrong revision; here's the prototype: we plan to
> start rolling it out gradually https://reviews.llvm.org/D122677 and then
>
Author: Kirill Bobyrev
Date: 2022-04-19T14:56:27+02:00
New Revision: bdf0b757d5938a9f774d17e81be226da3229d3e5
URL:
https://github.com/llvm/llvm-project/commit/bdf0b757d5938a9f774d17e81be226da3229d3e5
DIFF:
https://github.com/llvm/llvm-project/commit/bdf0b757d5938a9f774d17e81be226da3229d3e5.diff
Author: Kirill Bobyrev
Date: 2022-04-21T17:00:06+02:00
New Revision: 9f05b111ee1fc48974ed515c865bdaddb5998d01
URL:
https://github.com/llvm/llvm-project/commit/9f05b111ee1fc48974ed515c865bdaddb5998d01
DIFF:
https://github.com/llvm/llvm-project/commit/9f05b111ee1fc48974ed515c865bdaddb5998d01.diff
Author: Kirill Bobyrev
Date: 2022-04-21T16:54:59+02:00
New Revision: e1c0d2fb8272dd7f8e406334ac14077154217031
URL:
https://github.com/llvm/llvm-project/commit/e1c0d2fb8272dd7f8e406334ac14077154217031
DIFF:
https://github.com/llvm/llvm-project/commit/e1c0d2fb8272dd7f8e406334ac14077154217031.diff
Author: Kirill Bobyrev
Date: 2022-02-03T14:40:53+01:00
New Revision: 089d9c50b29e8e0eb18884edf17451e11a84a80f
URL:
https://github.com/llvm/llvm-project/commit/089d9c50b29e8e0eb18884edf17451e11a84a80f
DIFF:
https://github.com/llvm/llvm-project/commit/089d9c50b29e8e0eb18884edf17451e11a84a80f.diff
Author: Kirill Bobyrev
Date: 2022-02-09T11:05:39+01:00
New Revision: 46a6f5ae148ae2044f13cddf1bb1498a8bcfb372
URL:
https://github.com/llvm/llvm-project/commit/46a6f5ae148ae2044f13cddf1bb1498a8bcfb372
DIFF:
https://github.com/llvm/llvm-project/commit/46a6f5ae148ae2044f13cddf1bb1498a8bcfb372.diff
Author: Kirill Bobyrev
Date: 2022-02-09T11:52:03+01:00
New Revision: e3ba831937189ec61e28ced0b0bfc1e41a3510f8
URL:
https://github.com/llvm/llvm-project/commit/e3ba831937189ec61e28ced0b0bfc1e41a3510f8
DIFF:
https://github.com/llvm/llvm-project/commit/e3ba831937189ec61e28ced0b0bfc1e41a3510f8.diff
Author: Kirill Bobyrev
Date: 2022-02-10T20:29:26+01:00
New Revision: 100ec80ab5a6a01071771b67fc2141640d0984da
URL:
https://github.com/llvm/llvm-project/commit/100ec80ab5a6a01071771b67fc2141640d0984da
DIFF:
https://github.com/llvm/llvm-project/commit/100ec80ab5a6a01071771b67fc2141640d0984da.diff
Author: Kirill Bobyrev
Date: 2022-05-16T10:13:47+02:00
New Revision: 40f361ace3e9a9c24bd99300216aeabd49ad99bb
URL:
https://github.com/llvm/llvm-project/commit/40f361ace3e9a9c24bd99300216aeabd49ad99bb
DIFF:
https://github.com/llvm/llvm-project/commit/40f361ace3e9a9c24bd99300216aeabd49ad99bb.diff
Author: Kirill Bobyrev
Date: 2022-05-16T10:18:08+02:00
New Revision: 106e63ce47b5b00e376be9eef03a084c71c03f11
URL:
https://github.com/llvm/llvm-project/commit/106e63ce47b5b00e376be9eef03a084c71c03f11
DIFF:
https://github.com/llvm/llvm-project/commit/106e63ce47b5b00e376be9eef03a084c71c03f11.diff
Author: Kirill Bobyrev
Date: 2022-05-19T11:59:00+02:00
New Revision: 43c0f90dd6eb1d3481a4d5e384a33d0d99b7aa86
URL:
https://github.com/llvm/llvm-project/commit/43c0f90dd6eb1d3481a4d5e384a33d0d99b7aa86
DIFF:
https://github.com/llvm/llvm-project/commit/43c0f90dd6eb1d3481a4d5e384a33d0d99b7aa86.diff
Author: Kirill Bobyrev
Date: 2022-05-19T12:03:31+02:00
New Revision: 4f5a4215bfc896362adab89abc69f0e69de200ef
URL:
https://github.com/llvm/llvm-project/commit/4f5a4215bfc896362adab89abc69f0e69de200ef
DIFF:
https://github.com/llvm/llvm-project/commit/4f5a4215bfc896362adab89abc69f0e69de200ef.diff
Author: Kirill Bobyrev
Date: 2020-09-16T11:12:14+02:00
New Revision: 3a0a2a6347f5a79ebfba2cc2b763dd02001d9baa
URL:
https://github.com/llvm/llvm-project/commit/3a0a2a6347f5a79ebfba2cc2b763dd02001d9baa
DIFF:
https://github.com/llvm/llvm-project/commit/3a0a2a6347f5a79ebfba2cc2b763dd02001d9baa.diff
Author: Kirill Bobyrev
Date: 2020-09-16T12:10:00+02:00
New Revision: a909a84ef2d9220242512b8be1206ee3d9b3d8b9
URL:
https://github.com/llvm/llvm-project/commit/a909a84ef2d9220242512b8be1206ee3d9b3d8b9
DIFF:
https://github.com/llvm/llvm-project/commit/a909a84ef2d9220242512b8be1206ee3d9b3d8b9.diff
Author: Kirill Bobyrev
Date: 2020-09-16T12:27:59+02:00
New Revision: 3e5a4ef51a1d0def10525b2059f5cdab0cb0ae8d
URL:
https://github.com/llvm/llvm-project/commit/3e5a4ef51a1d0def10525b2059f5cdab0cb0ae8d
DIFF:
https://github.com/llvm/llvm-project/commit/3e5a4ef51a1d0def10525b2059f5cdab0cb0ae8d.diff
Author: Kirill Bobyrev
Date: 2020-08-26T17:08:19+02:00
New Revision: 9d11e6789c477ce6104e29745ca70e13c9fafeb0
URL:
https://github.com/llvm/llvm-project/commit/9d11e6789c477ce6104e29745ca70e13c9fafeb0
DIFF:
https://github.com/llvm/llvm-project/commit/9d11e6789c477ce6104e29745ca70e13c9fafeb0.diff
Author: Kirill Bobyrev
Date: 2020-12-09T21:40:37+01:00
New Revision: 5a1bc69f811059b8f62d381e3526d92fffa7d91a
URL:
https://github.com/llvm/llvm-project/commit/5a1bc69f811059b8f62d381e3526d92fffa7d91a
DIFF:
https://github.com/llvm/llvm-project/commit/5a1bc69f811059b8f62d381e3526d92fffa7d91a.diff
Author: Kirill Bobyrev
Date: 2020-12-10T13:36:49+01:00
New Revision: ee02e20c0817745c47ea9be8e26e9a49afc9a7fd
URL:
https://github.com/llvm/llvm-project/commit/ee02e20c0817745c47ea9be8e26e9a49afc9a7fd
DIFF:
https://github.com/llvm/llvm-project/commit/ee02e20c0817745c47ea9be8e26e9a49afc9a7fd.diff
Author: Kirill Bobyrev
Date: 2020-12-15T18:29:48+01:00
New Revision: dcdef5b5b3df457566e7faf61e1e5789c42528d1
URL:
https://github.com/llvm/llvm-project/commit/dcdef5b5b3df457566e7faf61e1e5789c42528d1
DIFF:
https://github.com/llvm/llvm-project/commit/dcdef5b5b3df457566e7faf61e1e5789c42528d1.diff
Author: Kirill Bobyrev
Date: 2020-12-15T18:42:42+01:00
New Revision: 32e7a9cab6412cb4bb5add5cb2d48be82e7d9f11
URL:
https://github.com/llvm/llvm-project/commit/32e7a9cab6412cb4bb5add5cb2d48be82e7d9f11
DIFF:
https://github.com/llvm/llvm-project/commit/32e7a9cab6412cb4bb5add5cb2d48be82e7d9f11.diff
Author: Kirill Bobyrev
Date: 2020-12-15T20:54:55+01:00
New Revision: 0545680cb870f1ca81198cd8324814543eb79e64
URL:
https://github.com/llvm/llvm-project/commit/0545680cb870f1ca81198cd8324814543eb79e64
DIFF:
https://github.com/llvm/llvm-project/commit/0545680cb870f1ca81198cd8324814543eb79e64.diff
Author: Kirill Bobyrev
Date: 2020-11-09T21:18:35+01:00
New Revision: 2c2680a470b59df84db16c4cd876efce91d7d4f2
URL:
https://github.com/llvm/llvm-project/commit/2c2680a470b59df84db16c4cd876efce91d7d4f2
DIFF:
https://github.com/llvm/llvm-project/commit/2c2680a470b59df84db16c4cd876efce91d7d4f2.diff
Author: Kirill Bobyrev
Date: 2020-11-09T22:49:54+01:00
New Revision: 142c6f82fda8d406ed26f1205d22dc1782653b32
URL:
https://github.com/llvm/llvm-project/commit/142c6f82fda8d406ed26f1205d22dc1782653b32
DIFF:
https://github.com/llvm/llvm-project/commit/142c6f82fda8d406ed26f1205d22dc1782653b32.diff
Author: Kirill Bobyrev
Date: 2020-11-10T10:08:49+01:00
New Revision: ca892f46fe12288f2abe9b60faba7664713d97af
URL:
https://github.com/llvm/llvm-project/commit/ca892f46fe12288f2abe9b60faba7664713d97af
DIFF:
https://github.com/llvm/llvm-project/commit/ca892f46fe12288f2abe9b60faba7664713d97af.diff
Author: Kirill Bobyrev
Date: 2020-11-10T10:18:38+01:00
New Revision: 085f900830e6687de54d3d6115c9517a55cc860a
URL:
https://github.com/llvm/llvm-project/commit/085f900830e6687de54d3d6115c9517a55cc860a
DIFF:
https://github.com/llvm/llvm-project/commit/085f900830e6687de54d3d6115c9517a55cc860a.diff
Author: Kirill Bobyrev
Date: 2020-11-11T08:24:09+01:00
New Revision: 8e9bde34e7185780e6470150c8bf6d902703bf9e
URL:
https://github.com/llvm/llvm-project/commit/8e9bde34e7185780e6470150c8bf6d902703bf9e
DIFF:
https://github.com/llvm/llvm-project/commit/8e9bde34e7185780e6470150c8bf6d902703bf9e.diff
Author: Kirill Bobyrev
Date: 2020-11-11T11:13:47+01:00
New Revision: 91ce6fb5a65f75c1b29c898f2cb76e2c5d1ac681
URL:
https://github.com/llvm/llvm-project/commit/91ce6fb5a65f75c1b29c898f2cb76e2c5d1ac681
DIFF:
https://github.com/llvm/llvm-project/commit/91ce6fb5a65f75c1b29c898f2cb76e2c5d1ac681.diff
Author: Kirill Bobyrev
Date: 2020-11-13T12:27:40+01:00
New Revision: a1152482826c9a80977871aa46e131ac803c5f44
URL:
https://github.com/llvm/llvm-project/commit/a1152482826c9a80977871aa46e131ac803c5f44
DIFF:
https://github.com/llvm/llvm-project/commit/a1152482826c9a80977871aa46e131ac803c5f44.diff
Author: Kirill Bobyrev
Date: 2020-11-19T13:24:55+01:00
New Revision: 140783347afb6e1848c81617d7fa3e556087cadd
URL:
https://github.com/llvm/llvm-project/commit/140783347afb6e1848c81617d7fa3e556087cadd
DIFF:
https://github.com/llvm/llvm-project/commit/140783347afb6e1848c81617d7fa3e556087cadd.diff
Author: Kirill Bobyrev
Date: 2020-11-20T10:38:41+01:00
New Revision: da14ae23a54783a4bb2e20651af434530510e704
URL:
https://github.com/llvm/llvm-project/commit/da14ae23a54783a4bb2e20651af434530510e704
DIFF:
https://github.com/llvm/llvm-project/commit/da14ae23a54783a4bb2e20651af434530510e704.diff
Author: Kirill Bobyrev
Date: 2020-11-23T11:42:56+01:00
New Revision: cf39bdb49086350e7178a0a058273907d180e809
URL:
https://github.com/llvm/llvm-project/commit/cf39bdb49086350e7178a0a058273907d180e809
DIFF:
https://github.com/llvm/llvm-project/commit/cf39bdb49086350e7178a0a058273907d180e809.diff
Author: Kirill Bobyrev
Date: 2020-11-23T11:59:38+01:00
New Revision: 1319c6624ed6b0a6fb48d975bbf278263a85fcef
URL:
https://github.com/llvm/llvm-project/commit/1319c6624ed6b0a6fb48d975bbf278263a85fcef
DIFF:
https://github.com/llvm/llvm-project/commit/1319c6624ed6b0a6fb48d975bbf278263a85fcef.diff
Author: Kirill Bobyrev
Date: 2020-11-27T03:59:28+01:00
New Revision: abfcb606c2f86da6dbf25bc260e4d716bc87eaf0
URL:
https://github.com/llvm/llvm-project/commit/abfcb606c2f86da6dbf25bc260e4d716bc87eaf0
DIFF:
https://github.com/llvm/llvm-project/commit/abfcb606c2f86da6dbf25bc260e4d716bc87eaf0.diff
Author: Kirill Bobyrev
Date: 2020-11-28T15:38:11+01:00
New Revision: 4169c520f6d7029d87098997e9f256a0170aa8cf
URL:
https://github.com/llvm/llvm-project/commit/4169c520f6d7029d87098997e9f256a0170aa8cf
DIFF:
https://github.com/llvm/llvm-project/commit/4169c520f6d7029d87098997e9f256a0170aa8cf.diff
Author: Kirill Bobyrev
Date: 2020-10-20T11:23:40+02:00
New Revision: 691eb814c1ae38d5015bf070dfed3fd54d542582
URL:
https://github.com/llvm/llvm-project/commit/691eb814c1ae38d5015bf070dfed3fd54d542582
DIFF:
https://github.com/llvm/llvm-project/commit/691eb814c1ae38d5015bf070dfed3fd54d542582.diff
Author: Kirill Bobyrev
Date: 2020-10-22T21:35:18+02:00
New Revision: 81e5f298c431555d809f898c196945ca879c1150
URL:
https://github.com/llvm/llvm-project/commit/81e5f298c431555d809f898c196945ca879c1150
DIFF:
https://github.com/llvm/llvm-project/commit/81e5f298c431555d809f898c196945ca879c1150.diff
Author: Kirill Bobyrev
Date: 2020-10-22T21:47:48+02:00
New Revision: 68486f9c3a509cdb23451a488f16c530919bab70
URL:
https://github.com/llvm/llvm-project/commit/68486f9c3a509cdb23451a488f16c530919bab70
DIFF:
https://github.com/llvm/llvm-project/commit/68486f9c3a509cdb23451a488f16c530919bab70.diff
Author: Kirill Bobyrev
Date: 2020-10-23T14:27:15+02:00
New Revision: 421a2a0dbbd691abeb86dee150cf710a6122e269
URL:
https://github.com/llvm/llvm-project/commit/421a2a0dbbd691abeb86dee150cf710a6122e269
DIFF:
https://github.com/llvm/llvm-project/commit/421a2a0dbbd691abeb86dee150cf710a6122e269.diff
Author: Kirill Bobyrev
Date: 2020-10-23T14:38:31+02:00
New Revision: e6c4d880fa8c1fdb55850cccd5d56050b7f3ecc5
URL:
https://github.com/llvm/llvm-project/commit/e6c4d880fa8c1fdb55850cccd5d56050b7f3ecc5
DIFF:
https://github.com/llvm/llvm-project/commit/e6c4d880fa8c1fdb55850cccd5d56050b7f3ecc5.diff
Author: Kirill Bobyrev
Date: 2020-10-26T07:08:49+01:00
New Revision: 15f6bad6d74a993e366c8fc93a9c91f213ac6bc3
URL:
https://github.com/llvm/llvm-project/commit/15f6bad6d74a993e366c8fc93a9c91f213ac6bc3
DIFF:
https://github.com/llvm/llvm-project/commit/15f6bad6d74a993e366c8fc93a9c91f213ac6bc3.diff
Author: Kirill Bobyrev
Date: 2020-10-26T14:14:47+01:00
New Revision: 58d0ef2d0466a893ab400f6a9829057b9d851038
URL:
https://github.com/llvm/llvm-project/commit/58d0ef2d0466a893ab400f6a9829057b9d851038
DIFF:
https://github.com/llvm/llvm-project/commit/58d0ef2d0466a893ab400f6a9829057b9d851038.diff
Author: Kirill Bobyrev
Date: 2020-10-26T15:31:59+01:00
New Revision: 1704704e762f232e827849ee881ebe74b5db7ef1
URL:
https://github.com/llvm/llvm-project/commit/1704704e762f232e827849ee881ebe74b5db7ef1
DIFF:
https://github.com/llvm/llvm-project/commit/1704704e762f232e827849ee881ebe74b5db7ef1.diff
Author: Kirill Bobyrev
Date: 2020-10-26T20:39:10+01:00
New Revision: d071bba9a4477290d0b164a2d338fb22ad2d3c3d
URL:
https://github.com/llvm/llvm-project/commit/d071bba9a4477290d0b164a2d338fb22ad2d3c3d
DIFF:
https://github.com/llvm/llvm-project/commit/d071bba9a4477290d0b164a2d338fb22ad2d3c3d.diff
101 - 200 of 696 matches
Mail list logo