File tree Expand file tree Collapse file tree 3 files changed +1
-2
lines changed Expand file tree Collapse file tree 3 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ pub(crate) fn prepare() {
14
14
eprintln ! ( "[INSTALL] hyperfine" ) ;
15
15
Command :: new ( "cargo" ) . arg ( "install" ) . arg ( "hyperfine" ) . spawn ( ) . unwrap ( ) . wait ( ) . unwrap ( ) ;
16
16
17
+ // FIXME download source archives where possible instead
17
18
clone_repo (
18
19
"rand" ,
19
20
"https://github.com/rust-random/rand.git" ,
Original file line number Diff line number Diff line change @@ -57,7 +57,6 @@ function base_sysroot_tests() {
57
57
fi
58
58
59
59
echo " [AOT] dst_field_align"
60
- # FIXME Re-add -Zmir-opt-level=2 once rust-lang/rust#67529 is fixed.
61
60
$MY_RUSTC example/dst-field-align.rs --crate-name dst_field_align --crate-type bin --target " $TARGET_TRIPLE "
62
61
$RUN_WRAPPER ./target/out/dst_field_align || (echo $? ; false)
63
62
Original file line number Diff line number Diff line change @@ -110,7 +110,6 @@ impl<'tcx> DebugContext<'tcx> {
110
110
111
111
entry. set ( gimli:: DW_AT_decl_file , AttributeValue :: FileIndex ( Some ( file_id) ) ) ;
112
112
entry. set ( gimli:: DW_AT_decl_line , AttributeValue :: Udata ( loc. line as u64 ) ) ;
113
- // FIXME: probably omit this
114
113
entry. set ( gimli:: DW_AT_decl_column , AttributeValue :: Udata ( loc. col . to_usize ( ) as u64 ) ) ;
115
114
}
116
115
You can’t perform that action at this time.
0 commit comments