Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
91405ab
Clean up unchecked_math, separate out unchecked_shifts
clarfonthey Sep 7, 2023
62fe807
FileCheck asm_unwind
rmehri01 Oct 20, 2023
2d0a34b
FileCheck caller_with_trivial_bound
rmehri01 Oct 20, 2023
2f9aa7d
FileCheck cycle
rmehri01 Oct 20, 2023
9b3f5e1
FileCheck dont_ice_on_generic_rust_call
rmehri01 Oct 20, 2023
76faae9
FileCheck dyn_trait
rmehri01 Oct 20, 2023
f005d23
FileCheck exponential_runtime
rmehri01 Oct 20, 2023
22679cd
FileCheck inline_any_operand
rmehri01 Oct 20, 2023
de56d2d
FileCheck inline_box_fn
rmehri01 Oct 20, 2023
9d61e6a
FileCheck inline_closure_borrows_arg
rmehri01 Oct 20, 2023
5caee41
FileCheck inline_closure_captures
rmehri01 Oct 20, 2023
7ee05d2
FileCheck inline_closure
rmehri01 Oct 20, 2023
d8f33ef
FileCheck inline_diverging
rmehri01 Oct 21, 2023
20e7caa
FileCheck inline_coroutine
rmehri01 Oct 21, 2023
19c36a9
FileCheck inline_instruction_set
rmehri01 Oct 21, 2023
de82551
FileCheck inline_into_box_place
rmehri01 Oct 21, 2023
3202d4e
FileCheck inline_options
rmehri01 Oct 21, 2023
21a4c39
FileCheck inline_retag
rmehri01 Oct 21, 2023
2532566
FileCheck inline_specialization
rmehri01 Oct 21, 2023
f7acf17
FileCheck inline_trait_method_2
rmehri01 Oct 21, 2023
1b9cb5d
FileCheck inline_trait_method
rmehri01 Oct 21, 2023
773dc62
FileCheck inline_as_ref_as_mut
rmehri01 Oct 21, 2023
bb69597
FileCheck inline_scopes_parenting
rmehri01 Oct 21, 2023
5cf65eb
FileCheck issue_78442
rmehri01 Oct 21, 2023
6e047c0
FileCheck unchecked_shifts
rmehri01 Oct 21, 2023
3faf05b
FileCheck unsized_argument
rmehri01 Oct 21, 2023
6ab66c3
FileCheck unwrap_unchecked
rmehri01 Oct 21, 2023
1ec10ec
address review comments
rmehri01 Oct 22, 2023
8076414
Don't emit delayed good-path bugs on panic
compiler-errors Oct 30, 2023
147c4a5
Refactor: move suggestion functions from demand to suggestions
chenyukang Oct 30, 2023
2fcb4d9
change inline_retag to after.mir
rmehri01 Oct 31, 2023
587af91
Inline and remove `create_session`.
nnethercote Oct 30, 2023
c0ed667
Rollup merge of #115626 - clarfonthey:unchecked-math, r=thomcc
matthiaskrgr Nov 1, 2023
765ac22
Rollup merge of #117029 - rmehri01:mir_opt_filecheck_inline_tests, r=…
matthiaskrgr Nov 1, 2023
d65fffc
Rollup merge of #117397 - compiler-errors:dont-emit-good-path-on-pani…
matthiaskrgr Nov 1, 2023
63249fb
Rollup merge of #117401 - chenyukang:yukang-cleanup-hir-typeck-sugges…
matthiaskrgr Nov 1, 2023
d46dcdf
Rollup merge of #117475 - nnethercote:rm-create_session, r=oli-obk
matthiaskrgr Nov 1, 2023
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
FileCheck inline_trait_method
  • Loading branch information
rmehri01 committed Oct 25, 2023
commit 1b9cb5d59bb704c8a7920abcdbdef83f3273afba
3 changes: 2 additions & 1 deletion tests/mir-opt/inline/inline_trait_method.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// skip-filecheck
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
// compile-flags: -Z span_free_formats

Expand All @@ -8,6 +7,8 @@ fn main() {

// EMIT_MIR inline_trait_method.test.Inline.after.mir
fn test(x: &dyn X) -> u32 {
// CHECK-LABEL: fn test(
// CHECK-NOT: (inlined <dyn X as X>::y)
x.y()
}

Expand Down