Skip to content

Commit a6cbb97

Browse files
committed
Do not generate comparefoo.gv and simpleeq.gv during testing
1 parent 57c8a3e commit a6cbb97

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)