Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
356027b
ast_passes/validation: update module docs
jieyouxu Apr 17, 2024
0e35216
ast_passes/validation: update attribute macro example
jieyouxu Apr 17, 2024
9aec5c5
Add test for fn pointer duplication.
cjgillot Apr 9, 2024
d223ba6
Document test.
cjgillot Apr 10, 2024
4c779d7
Mark `foo` as explicitly inline.
cjgillot May 4, 2024
ea29d6a
We can traverse bindings before `lower_match_tree` now
Nadrieril Jun 17, 2024
012626b
Only one caller of `lower_match_tree` was using the fake borrows
Nadrieril Jun 17, 2024
cef49f7
Small dedup
Nadrieril Jun 17, 2024
878ccd2
There's nothing to bind for a wildcard
Nadrieril Jun 17, 2024
c0c6c32
Move `lower_match_tree`
Nadrieril Jun 17, 2024
e9ea578
Move vcall_visibility_metadata optimization hint out of a debuginfo g…
bjorn3 Mar 30, 2024
7f44532
Remove PrintBackendInfo trait
bjorn3 Mar 30, 2024
98e8601
Remove const_bitcast from ConstMethods
bjorn3 Mar 30, 2024
e32eb4c
Dedup some intrinsic handling code for caller_location
bjorn3 Mar 30, 2024
22b3243
Move all intrinsic handling code in codegen_call_terminators together
bjorn3 Mar 30, 2024
aacdce3
Remove check_overflow method from MiscMethods
bjorn3 Mar 30, 2024
887f57f
Remove type_i1 and type_struct from cg_ssa
bjorn3 Mar 30, 2024
84f45bb
Fix doc comment
bjorn3 Mar 30, 2024
7b150a1
Don't use fake wildcards when we can get the failure block directly
Nadrieril Jun 17, 2024
ff49c37
Reuse `lower_let_expr` for `let .. else` lowering
Nadrieril Jun 17, 2024
beb1d35
Change comment to reflect switch to THIR unsafeck
Nadrieril Jun 22, 2024
414ebea
add serde derive Serialize to stable_mir
Jun 17, 2024
315be7d
Update browser-ui-test version to `0.18.0`
GuillaumeGomez Jun 26, 2024
0c0dfb8
Switch back `non_local_definitions` lint to allow-by-default
Urgau Jun 27, 2024
648cb16
Enable const casting for `f16` and `f128`
tgross35 Jun 13, 2024
4a11ab0
Fix Markdown tables in platform-support.md
xen0n Jun 27, 2024
ab690fe
Rollup merge of #123237 - bjorn3:debuginfo_refactor, r=compiler-errors
matthiaskrgr Jun 27, 2024
72f2d11
Rollup merge of #123714 - cjgillot:static-fnptr, r=wesleywiser
matthiaskrgr Jun 27, 2024
d1ebca1
Rollup merge of #124091 - jieyouxu:ast-validation-top-level-docs, r=w…
matthiaskrgr Jun 27, 2024
bba1beb
Rollup merge of #126835 - Nadrieril:reify-decision-tree, r=matthewjasper
matthiaskrgr Jun 27, 2024
0eaded6
Rollup merge of #126963 - runtimeverification:smir_serde_derive, r=ol…
matthiaskrgr Jun 27, 2024
8a4c44a
Rollup merge of #127010 - GuillaumeGomez:update-puppeteer, r=notriddle
matthiaskrgr Jun 27, 2024
a4474b5
Rollup merge of #127015 - Urgau:non_local_def-tmp-allow, r=lqd
matthiaskrgr Jun 27, 2024
f5b2ef6
Rollup merge of #127029 - xen0n:fix-platform-support-table, r=lqd
matthiaskrgr Jun 27, 2024
11cff7d
Rollup merge of #127032 - tgross35:f16-f128-const-eval-cast, r=oli-obk
matthiaskrgr Jun 27, 2024
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
Prev Previous commit
Next Next commit
Mark foo as explicitly inline.
  • Loading branch information
cjgillot committed May 4, 2024
commit 4c779d75bff7c7c83f4955c3f448198f6dd3c1db
1 change: 1 addition & 0 deletions tests/ui/mir/auxiliary/static_fnptr.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//@ compile-flags:-O

#[inline]
fn foo() {}

pub static ADDR: fn() = foo;
Expand Down