Skip to content

Commit 0537f63

Browse files
committedSep 5, 2023
Merge tag 'llvmorg-17.0.0-rc4' of https://github.com/llvm/llvm-project into rustc/17.0-2023-07-29
LLVM 17.0.0-rc4 Release
2 parents 50eecd0 + 092b6c5 commit 0537f63

File tree

236 files changed

+5798
-1013
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

236 files changed

+5798
-1013
lines changed
 

‎.github/workflows/libclang-abi-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,12 @@ jobs:
146146
uses: actions/download-artifact@v3
147147
with:
148148
name: build-baseline
149+
path: build-baseline
149150
- name: Download latest
150151
uses: actions/download-artifact@v3
151152
with:
152153
name: build-latest
154+
path: build-latest
153155

154156
- name: Install abi-compliance-checker
155157
run: sudo apt-get install abi-compliance-checker

‎bolt/lib/Rewrite/RewriteInstance.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1844,8 +1844,9 @@ void RewriteInstance::adjustCommandLineOptions() {
18441844
exit(1);
18451845
}
18461846

1847-
if (opts::ReorderFunctions != ReorderFunctions::RT_NONE &&
1848-
!opts::HotText.getNumOccurrences()) {
1847+
if (opts::Instrument ||
1848+
(opts::ReorderFunctions != ReorderFunctions::RT_NONE &&
1849+
!opts::HotText.getNumOccurrences())) {
18491850
opts::HotText = true;
18501851
} else if (opts::HotText && !BC->HasRelocations) {
18511852
errs() << "BOLT-WARNING: hot text is disabled in non-relocation mode\n";

0 commit comments

Comments
 (0)