Skip to content

Commit 98b18f5

Browse files
committed
Rollup merge of #29868 - petrochenkov:gv, r=sanxiyn
r? @arielb1
2 parents 1b26148 + a6cbb97 commit 98b18f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/run-pass/mir_raw_fat_ptr.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ fn compare_au8(a: *const [u8], b: *const [u8]) -> ComparisonResults {
7676
}
7777
}
7878

79-
#[rustc_mir(graphviz="comparefoo.gv")]
79+
#[rustc_mir]
8080
fn compare_foo<'a>(a: *const (Foo+'a), b: *const (Foo+'a)) -> ComparisonResults {
8181
ComparisonResults {
8282
lt: a < b,
@@ -88,7 +88,7 @@ fn compare_foo<'a>(a: *const (Foo+'a), b: *const (Foo+'a)) -> ComparisonResults
8888
}
8989
}
9090

91-
#[rustc_mir(graphviz="simpleeq.gv")]
91+
#[rustc_mir]
9292
fn simple_eq<'a>(a: *const (Foo+'a), b: *const (Foo+'a)) -> bool {
9393
let result = a == b;
9494
result

0 commit comments

Comments
 (0)