- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Advanced Search
Today
Yesterday
Sat, Mar 25
Let's document the option as well under: https://clang.llvm.org/docs/ClangCommandLineReference.html#powerpc
Fri, Mar 24
Fix bug: StringRef::lower() returns a std::string as a temporary, and Twine doesn't own the memory of the substrings.
The temporary should be used in the same C++ statement so that there's no lifetime issues.
Wed, Mar 22
Is there any reason to require an even number of hex digits? Or to convert the hex string to lower case?
Mon, Mar 20
add new test
add "<0xHEXSTRING>" to the option documentation.
Sat, Mar 18
Tue, Mar 14
LGTM. Would be nice to get @daltenty 's approval too.
Mon, Mar 13
testcase?
Wed, Mar 8
Feb 21 2023
LGTM
Feb 2 2023
Jan 25 2023
Jan 24 2023
Jan 12 2023
Dec 19 2022
Nov 29 2022
Nov 25 2022
Oct 27 2022
Fixed by D136192
Oct 26 2022
Oct 25 2022
I wasn't included as a reviewer on D124857 and I missed that change so couldn't comment there, but I'm not a fan of including the AIX support in InstrProfilingPlatformLinux.c. AIX is neither Linux nor ELF-based and big chunks of that file are now #ifdefed out making it harder to comprehend which part is used where. I'd prefer introducing InstrProfilingPlatformAIX.c, moving the AIX-specific logic there, and then figuring out how to possibly share common parts between InstrProfilingPlatformLinux.c and InstrProfilingPlatformAIX.c, for example by moving them to an .inc file.
Oct 21 2022
Oct 20 2022
@phosek @MaskRay If you can kindly review this patch as it affects non-AIX platforms with the changes in compiler-rt/lib/profile/InstrProfilingRuntime.cpp. I'm hoping the change are like for like but I cannot be sure for all platforms.
Don't move around code in InstrProfilingPlatformLinux.c
Improve the current patch and integrate D134253 into it.
Oct 19 2022
Oct 18 2022
Oct 17 2022
@MaskRay please let me know if you have any comments. This affect AIX only, but might reduce readability with the introduction of the #if's
replace %clang -fprofile-generate with %clang_pgogen in the testcase.
Sep 30 2022
@hubert.reinterpretcast do you think we shud add the "keep()" testcase as a LIT?
Redo the variable retainment mechanism based on offline discussion with @hubert.reinterpretcast that followed his code review comments.
Sep 26 2022
LGTM
In D134222#3815956, @jansvoboda11 wrote:In D134222#3815793, @w2yehia wrote:@jansvoboda11
FYI, this is breaking AIX buildbot:
https://lab.llvm.org/buildbot/#/builders/214/builds/3436/steps/6/logs/FAIL__Clang__modules-header-sharing_mThanks for reporting this and sorry for the breakage. Should be fixed in 8df1f3bc19d7.
@jansvoboda11
FYI, this is breaking AIX buildbot:
https://lab.llvm.org/buildbot/#/builders/214/builds/3436/steps/6/logs/FAIL__Clang__modules-header-sharing_m
Sep 21 2022
Sep 20 2022
Address code review comments.
Sep 19 2022
add testcase
Sep 8 2022
Aug 8 2022
Aug 5 2022
Aug 3 2022
Looks good. Thanks.
Jul 18 2022
In D129401#3655316, @quinnp wrote:I've realized that getExplicitDataSections() interacts with ...
Jul 11 2022
LGTM
Jun 7 2022
use update_test_checks.py to generate the CHECKs
@nikic any chance you can review this today? thanks!
Jun 6 2022
As per review, remove !OBI->hasNoSignedWrap() from the early exit condition. Also the original fix is no longer needed so remove it as well.
Jun 2 2022
May 27 2022
May 5 2022
May 4 2022
Address one comment.