Skip to content

Commit a48fea6

Browse files
committed
Add and remove some fixmes
1 parent fef517e commit a48fea6

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

build_system/prepare.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ pub(crate) fn prepare() {
1414
eprintln!("[INSTALL] hyperfine");
1515
Command::new("cargo").arg("install").arg("hyperfine").spawn().unwrap().wait().unwrap();
1616

17+
// FIXME download source archives where possible instead
1718
clone_repo(
1819
"rand",
1920
"https://github.com/rust-random/rand.git",

scripts/tests.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ function base_sysroot_tests() {
5757
fi
5858

5959
echo "[AOT] dst_field_align"
60-
# FIXME Re-add -Zmir-opt-level=2 once rust-lang/rust#67529 is fixed.
6160
$MY_RUSTC example/dst-field-align.rs --crate-name dst_field_align --crate-type bin --target "$TARGET_TRIPLE"
6261
$RUN_WRAPPER ./target/out/dst_field_align || (echo $?; false)
6362

src/debuginfo/line_info.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ impl<'tcx> DebugContext<'tcx> {
110110

111111
entry.set(gimli::DW_AT_decl_file, AttributeValue::FileIndex(Some(file_id)));
112112
entry.set(gimli::DW_AT_decl_line, AttributeValue::Udata(loc.line as u64));
113-
// FIXME: probably omit this
114113
entry.set(gimli::DW_AT_decl_column, AttributeValue::Udata(loc.col.to_usize() as u64));
115114
}
116115

0 commit comments

Comments
 (0)