Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
89a23bf
add regression test for #85907
TaKO8Ki Jun 27, 2022
d16187c
Remove references to `./tmp` in-tree
jyn514 Jun 27, 2022
05263f0
add regression test for #80074
TaKO8Ki Jun 28, 2022
396342a
:arrow_up: rust-analyzer
lnicola Jun 28, 2022
ae4b929
rustdoc-json: Add assoc type ICE regression test
Enselic Jun 26, 2022
2888e76
test/rustdoc-json/assoc_type.rs: Maximize chance of detecting future …
Enselic Jun 28, 2022
8c7d9f6
fix ice for associated constant generics
TaKO8Ki Jun 28, 2022
b7e6200
Fix glob import ICE in rustdoc JSON format
GuillaumeGomez Jun 28, 2022
c2221ef
Add regression test for glob import ICE in rustdoc JSON
GuillaumeGomez Jun 28, 2022
2ee9241
Remove feature `const_option` from std
ChrisDenton Jun 28, 2022
720c430
Add a fixme comment
ChrisDenton Jun 28, 2022
d6b9c10
Fix mir-opt wg name
Mark-Simulacrum Jun 28, 2022
fe02ee8
llvm-wrapper: adapt for an LLVM API change
krasimirgg Jun 28, 2022
8c22b6b
fix typo in comment
pro465 Jun 28, 2022
3991e73
Rollup merge of #98548 - Enselic:allow-typedef-diff-for-rustdoc-json,…
matthiaskrgr Jun 28, 2022
5c7a045
Rollup merge of #98560 - TaKO8Ki:add-regression-test-for-85907, r=Mar…
matthiaskrgr Jun 28, 2022
6cb46ca
Rollup merge of #98564 - jyn514:remove-tmp-dir, r=Mark-Simulacrum
matthiaskrgr Jun 28, 2022
70b4e04
Rollup merge of #98602 - TaKO8Ki:add-regression-test-for-issue-80074,…
matthiaskrgr Jun 28, 2022
28d2c4b
Rollup merge of #98606 - lnicola:rust-analyzer-2022-06-28, r=lnicola
matthiaskrgr Jun 28, 2022
a1b0638
Rollup merge of #98609 - TaKO8Ki:fix-ice-for-associated-constant-gene…
matthiaskrgr Jun 28, 2022
956a9f5
Rollup merge of #98611 - GuillaumeGomez:rustdoc-json-glob-ice, r=notr…
matthiaskrgr Jun 28, 2022
a3bdd46
Rollup merge of #98617 - ChrisDenton:const-unwrap, r=Mark-Simulacrum
matthiaskrgr Jun 28, 2022
62a787c
Rollup merge of #98619 - Mark-Simulacrum:fix-triagebot, r=Dylan-DPC
matthiaskrgr Jun 28, 2022
db872ee
Rollup merge of #98621 - krasimirgg:llvm-15-wrapper, r=nikic
matthiaskrgr Jun 28, 2022
164c98e
Rollup merge of #98623 - pro465:patch-1, r=Dylan-DPC
matthiaskrgr Jun 28, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,9 @@ LLVMRustOptimizeWithNewPassManager(
if (SanitizerOptions->SanitizeAddress) {
OptimizerLastEPCallbacks.push_back(
[SanitizerOptions](ModulePassManager &MPM, OptimizationLevel Level) {
#if LLVM_VERSION_LT(15, 0)
MPM.addPass(RequireAnalysisPass<ASanGlobalsMetadataAnalysis, Module>());
#endif
#if LLVM_VERSION_GE(14, 0)
AddressSanitizerOptions opts = AddressSanitizerOptions{
/*CompileKernel=*/false,
Expand Down